@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap");

:root {
  /* Theme Colors */
  --av-color-primary: #12715b;
  --av-color-black: #000000;
  /* --av-color-text: #555555; */
  --av-color-text: #141b34;
  --av-color-primary-icon: #aaaaaa;
  --av-color-border-color: #e6e6e6;
  --av-color-input-color: #f6f6f6;
  --av-color-white-color: #ffffff;
  --av-color-bg: #fbf9f7;

  /* Theme Font Size */
  --av-font-size-12: 0.75rem;
  --av-font-size-14: 0.875rem;
  --av-font-size-16: 1rem;
  --av-font-size-18: 1.125rem;
  --av-font-size-20: 1.25rem;
  --av-font-size-22: 1.375rem;
  --av-font-size-24: 1.5rem;
  --av-font-size-26: 1.625rem;
  --av-font-size-28: 1.75rem;
  --av-font-size-30: 1.875rem;
  --av-font-size-32: 2rem;
  --av-font-size-34: 2.125rem;
  --av-font-size-36: 2.25rem;
  --av-font-size-38: 2.375rem;
  --av-font-size-40: 2.5rem;
  --av-font-size-42: 2.625rem;
  /* Theme Font Weight */
  --av-font-weight-400: 400;
  --av-font-weight-500: 500;
  --av-font-weight-600: 600;
  --av-font-weight-700: 700;
  /* Theme Radius */
  --av-radius-500: 31.25rem;
  --av-radius-22: 1.375rem;
}

html,
body {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0rem;
}
.avento-hero {
  position: relative;
  overflow: hidden;
}
.avento-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--av-color-bg);
  z-index: 0;
  pointer-events: none;
}
.avento-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}
.hero-rings {
  position: absolute;
  inset: 0;
  padding: 1.9375rem 0rem 1.6875rem;
}
.hero-rings .left-img {
  position: absolute;
  left: 6.25rem;
}
.hero-rings .right-img {
  position: absolute;
  right: 6.25rem;
}
.avento-header {
  background-color: none;
  height: 4.75rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.25rem;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--av-radius-500);
  padding: 0rem 1.25rem 0rem 1.875rem;
}
.avento-header .header-items {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
.avento-header .header-items ul {
  display: flex;
  gap: 1.875rem;
  list-style-type: none;
  margin-bottom: 0rem;
}
.avento-header .header-items .auth {
  display: flex;
  gap: 1.25rem;
}
.auth a {
  width: 7.5rem;
  height: 2.75rem;
  border-radius: var(--av-radius-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Roboto;
  font-weight: var(--av-font-weight-500);
  font-size: var(--av-font-size-14);
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: none;
}
.auth .login {
  background: var(--av-color-white-color);
  border: 0.0625rem solid var(--av-color-border-color);
  color: var(--av-color-text);
}
.auth .signup {
  background: var(--av-color-text);
  color: var(--av-color-white-color);
  background-size: 100% auto;
}
.avento-header .header-items ul li a {
  font-family: Roboto;
  font-weight: var(--av-font-weight-400);
  font-size: var(--av-font-size-16);
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--av-color-text);
  text-decoration: none;
  position: relative;
}
.avento-content {
  padding-top: 60px;
  padding-bottom: 3.375rem;
  z-index: 2;
  position: relative;
}
/* .avento-home-content {
  padding-top: 50px;
} */
.dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--av-color-text);
  border-radius: var(--av-radius-500);
}
.thunder-tag span {
  font-family: Roboto;
  font-weight: var(--av-font-weight-500);
  font-size: var(--av-font-size-18);
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--av-color-text);
}

.thunder-tag {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: fit-content;
  padding: 0.75rem 1.875rem;
  margin: 0rem auto;
  background: var(--av-color-white-color);
  border: 0.0625rem solid var(--av-color-border-color);
  border-radius: var(--av-radius-500);
  margin-bottom: 1.875rem;
}
.av-hero-head {
  display: flex;
  margin: 0 auto;
  width: fit-content;
  margin-bottom: 1.25rem;
  align-items: center;
}
.av-hero-head h1 {
  font-family: Roboto;
  font-weight: 700;
  font-style: Bold;
  font-size: 2.875rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--av-color-text);
  margin-bottom: 0rem;
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.av-hero-head .green {
  background: linear-gradient(
    90deg,
    #137861 0%,
    #197859 25%,
    #3c9a50 50%,
    #197859 75%,
    #137861 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  animation: gradientMove 3s ease infinite;
}
.green {
  margin-bottom: 0rem;
}
.green-main img {
  position: relative;
  left: 1rem;
}
.avento-content .hero-text {
  font-family: Roboto;
  font-weight: var(--av-font-weight-400);
  font-size: var(--av-font-size-20);
  line-height: 2.25rem;
  letter-spacing: 0%;
  text-align: center;
  color: var(--av-color-text);
  max-width: 58.9375rem;
  margin: 0 auto;
  margin-bottom: 3.75rem;
}
.main-section {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 auto;
  gap: 2.5rem;
}
.left-element {
  z-index: 1;
}
.middle-element {
  margin-left: -15rem;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.middle-avento {
  position: absolute;
  z-index: 2;
}
.right-element {
  z-index: 1;
  flex: 1;
}
.tabs {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.tab-rocket {
  position: relative;
  width: 3.4375rem;
  height: 3.4375rem;
  border-radius: 31.25rem;
  background: var(--av-color-input-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rocket-text {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  align-items: start;
  text-align: start;
}
.rocket-text p {
  font-family: Roboto;
  font-weight: var(--av-font-weight-500);
  font-size: var(--av-font-size-16);
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--av-color-text);
  margin-bottom: 0;
}
.rocket-text span {
  font-family: Roboto;
  font-weight: var(--av-font-weight-400);
  font-size: var(--av-font-size-14);
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--av-color-text);
}
.rpercent {
  font-family: Roboto;
  font-weight: var(--av-font-weight-600);
  font-size: var(--av-font-size-26);
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--av-color-text);
}
.tab-rocket img {
  position: absolute;
}
.tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.125rem;
  padding: 0.625rem 1.25rem;
  background: var(--av-color-white-color);
  border: 0.0625rem solid var(--av-color-border-color);
  border-radius: 0.375rem;
  width: 23.0625rem;
}
.tab-division {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.middle-tab {
  position: relative;
  left: 4.0625rem;
}
.swirl-arrow {
  display: block;
  margin: 0 auto 1.875rem;
  left: -4.375rem;
  position: relative;
}
.trial-btn {
  background: var(--av-color-text);
}
.demo-btn {
  background: var(--av-color-input-color);
  gap: 0.625rem;
  color: var(--av-color-text) !important;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4375rem;
  margin-bottom: 6.25rem;
}
.hero-btns a {
  font-family: Roboto;
  font-weight: var(--av-font-weight-600);
  font-size: var(--av-font-size-20);
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17.5rem;
  height: 3.875rem;
  text-decoration: none;
  border-radius: var(--av-radius-500);
}
.rcheck {
  grid-template-columns: repeat(1, 1fr) !important;
}
.performance-content .rcheck li {
  background: url("images/check.png") no-repeat left center;
}
.assistant-content .rcheck li {
  background: url("images/check.png") no-repeat left center;
}
.partner-company {
  text-align: center;
  font-family: Roboto;
  font-weight: var(--av-font-weight-700);
  font-size: var(--av-font-size-42);
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 4.0625rem;
  color: var(--av-color-text);
}
.carousel-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 6.25rem;
}
.ccard {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2.8125rem;
}
.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-track:hover {
  animation-play-state: paused;
}
.testimonial-track:hover {
  animation-play-state: paused;
}
.testimonial-track2:hover {
  animation-play-state: paused;
}
.features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--av-color-bg);
  z-index: 0;
  pointer-events: none;
}
.features-section {
  position: relative;
  margin-bottom: 6.25rem;
  padding-top: 6.25rem;
}
.features-tag {
  margin-bottom: 1.5625rem;
}
.features-head {
  text-align: center;
  font-family: Roboto;
  font-weight: var(--av-font-weight-700);
  font-size: var(--av-font-size-42);
  line-height: 100%;
  letter-spacing: 0%;
  margin: 0 auto;
  margin-bottom: 1.5625rem;
  color: var(--av-color-text);
}
.features-text {
  max-width: 58.6875rem;
  margin: 0 auto;
  text-align: center;
  font-family: Roboto;
  font-weight: var(--av-font-weight-400);
  font-size: var(--av-font-size-20);
  line-height: 2.25rem;
  letter-spacing: 0%;
  color: var(--av-color-text);
}
.testimonial-section .brain-text {
  max-width: 52.8125rem;
}
.features-section .features-text {
  max-width: 44.3125rem;
}
.features-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 3.75rem 0 6.25rem;
}
.feature-card {
  background: var(--av-color-white-color);
  padding: 1.875rem;
  border-radius: 1.375rem;
  z-index: 1;
  box-shadow: 0rem 0.8125rem 6.25rem 0rem #c7c7c740;
}
.feature-card img {
  margin-bottom: 0.9375rem;
}
.feature-card h4 {
  font-family: Sora;
  font-weight: var(--av-font-weight-600);
  font-size: var(--av-font-size-24);
  line-height: 2.5rem;
  letter-spacing: -0.02rem;
  margin-bottom: 0.9375rem;
  color: var(--av-color-text);
}
.feature-card p {
  font-family: Roboto;
  font-weight: var(--av-font-weight-400);
  font-size: var(--av-font-size-16);
  line-height: 1.75rem;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--av-color-text);
  margin-bottom: 0rem;
}
.feature-card--large {
  grid-column: span 2;
  background: var(--av-color-white-color);
  color: var(--av-color-text);
  padding: 1.875rem 1.4375rem 0rem 1.875rem;
  display: flex;
  flex-direction: row;
}
.feature-card--large .large-left img {
  width: unset;
}
.feature-card--large h3 {
  font-family: Sora;
  font-weight: var(--av-font-weight-600);
  font-size: var(--av-font-size-24);
  line-height: 2.5rem;
  letter-spacing: -0.02rem;
  margin-bottom: 0.9375rem;
}
.feature-card--large p {
  font-family: Roboto;
  font-weight: var(--av-font-weight-400);
  font-size: var(--av-font-size-16);
  line-height: 1.75rem;
  letter-spacing: 0%;
  max-width: 38.6875rem;
  color: var(--av-color-text);
}
.feature-card--large img {
  width: 100%;
  margin-bottom: 0rem;
}
.assistant-section {
  display: flex;
  align-items: center;
  gap: 2.9375rem;
  margin-bottom: 6.25rem;
}
.assistant-img {
  border-radius: 1.5rem;
}
.assistant-content .thunder-tag {
  margin: 0;
  margin-bottom: 1.5625rem;
}
.assistant-content .features-head {
  text-align: start;
  margin: 0rem;
  line-height: 3.75rem;
}
.assistant-content .checklist {
  gap: 0.625rem;
}
.assistant-content .powered-text p {
  font-size: 1rem;
}
.assistant-content {
  max-width: 37.5rem;
}
.assistant-img,
.assistant-content {
  flex: 1 1 0;
  /* min-width: 0; */
}
.assistant-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.25rem;
}
.powered-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.powered-text p {
  margin-bottom: 0rem;
  font-family: Roboto;
  font-weight: var(--av-font-weight-400);
  font-size: var(--av-font-size-20);
  line-height: 2.25rem;
  letter-spacing: 0%;
  color: var(--av-color-text);
}
.checklist {
  padding-left: 0rem;
  margin-bottom: 0rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.checklist li {
  list-style: none;
  padding-left: 2rem;
  background: url("images/check.png") no-repeat left top;
  font-family: Roboto;
  font-weight: var(--av-font-weight-400);
  font-size: var(--av-font-size-16);
  line-height: 2rem;
  letter-spacing: 0%;
  color: var(--av-color-text);
}
.integration-section {
  position: relative;
  padding-top: 6.25rem;
  padding-bottom: 5.0625rem;
  margin-bottom: 6.25rem;
}
.integration-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--av-color-bg);
  z-index: 0;
  pointer-events: none;
}
.integration-section .avento-section {
  position: relative;
  width: 100%;
  height: 31.25rem;
  overflow: hidden;
  margin-top: 3.75rem;
  background: url("images/wavy.png") center center no-repeat;
}
.integration-section .center-node {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
}
.integration-section .center-circle {
  width: 18.5rem;
  height: 18.5rem;
}
.integration-section .center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7.125rem;
  transform: translate(-50%, -50%);
}
.integration-section .profile {
  position: absolute;
  width: 13.5rem;
  height: 5.9375rem;
  border-radius: 0.625rem;
  background: #ffffff;
  border: 0.0625rem dashed #141b3440;
  text-align: center;
  align-content: center;
}
.integration-section .p1 {
  top: 2%;
  left: 18%;
}
.integration-section .p2 {
  top: 20%;
  left: 0%;
}
.integration-section .p3 {
  top: 39%;
  left: 18%;
}
.integration-section .p4 {
  bottom: 22%;
  left: 0%;
}
.integration-section .p5 {
  bottom: 3%;
  left: 18%;
}
.integration-section .p6 {
  top: 2%;
  right: 22%;
}
.integration-section .p7 {
  top: 20%;
  right: 0%;
}
.integration-section .p8 {
  top: 39%;
  right: 22%;
}
.integration-section .p9 {
  bottom: 22%;
  right: 0%;
}
.integration-section .p10 {
  bottom: 3%;
  right: 22%;
}
.integration-section .cta-btn {
  transform: translateX(0%);
  background: var(--av-color-text);
  width: 17.5rem;
  height: 3.875rem;
  border-radius: var(--av-radius-500);
  font-family: Roboto;
  font-weight: var(--av-font-weight-600);
  font-size: var(--av-font-size-20);
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--av-color-white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  text-decoration: none;
  margin: 0 auto;
  margin-top: 4.375rem;
}

@media (min-width: 1400px) and (max-width: 1599.98px) {
  .avento-section {
    background-size: 93% 90% !important;
  }
  .main-section {
    gap: 0rem;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .avento-section {
    background-size: 93% 90% !important;
  }
  .integration-section .profile {
    width: 12.5rem;
    height: 4.6875rem;
  }
  .integration-section .p2 {
    top: 22%;
  }
  .integration-section .p4 {
    bottom: 25%;
  }
  .integration-section .p7 {
    top: 22%;
  }
  .integration-section .p9 {
    bottom: 25%;
  }
}

@media (max-width: 991.98px) {
  .integration-section .avento-section {
    background: none;
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: space-between;
    row-gap: 1.875rem;
    height: unset;
  }
  .integration-section .avento-section .center-node {
    display: none;
  }
  .integration-section .profile {
    position: unset;
  }
}

@media (max-width: 499.98px) {
  .integration-section .avento-section {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (min-width: 767px) and (max-width: 992px) {
  .integration-section .avento-section {
    width: 80%;
    margin: 3.75rem auto 0rem;
  }
}

.tools-section {
  margin-bottom: 6.25rem;
}
.tools-section .features-head {
  max-width: 45.1875rem;
  line-height: 3.75rem;
}
.toolsassistant-section {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3.75rem;
}
.step-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: var(--av-color-white-color);
  box-shadow: 0.75rem 0.75rem 3.125rem 0rem #00000014;
  margin-bottom: 1.5625rem;
  cursor: pointer;
  border-left: 0.0625rem solid var(--av-color-white-color);
  transition: 0.5s all;
}

.step-card:hover {
  /* transform: translateX(0.9375rem) scale(1.02); */
  border-left: 0.0625rem solid #000000;
}
.step-card.active:hover {
  border-left: none;
}
.step-card.active {
  border-left: none;
}

.step-card p {
  margin-bottom: 0rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    opacity 0.2s ease-in-out,
    max-height 0.4s ease-in-out;
}

.step-card.active p {
  max-height: 62.5rem;
  opacity: 1;
  transition:
    opacity 0.9s ease-in-out,
    max-height 0.9s ease-in-out;
}

.step-content {
  display: flex;
  gap: 0.8125rem;
  align-items: center;
}
.step-card.active {
  border-top: 0.0625rem solid #000000;
  gap: 1rem;
}
.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--av-color-input-color);
  flex-shrink: 0;
  font-family: Roboto;
  font-weight: var(--av-font-weight-600);
  font-size: var(--av-font-size-18);
  line-height: 0rem;
  letter-spacing: -0.015rem;
  vertical-align: middle;
  color: #555555;
}
.step-card.active .step-number {
  font-family: Roboto;
  font-weight: var(--av-font-weight-600);
  font-size: var(--av-font-size-18);
  line-height: 0rem;
  letter-spacing: -0.015rem;
  vertical-align: middle;
}
.step-content {
  display: flex;
  align-items: center;
}
.step-card.active p {
  margin-bottom: 0rem;
  font-family: Roboto;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--av-color-text);
}
.step-content h4 {
  margin: 0;
  font-family: Roboto;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2.5rem;
  letter-spacing: -0.02rem;
  vertical-align: middle;
  color: var(--av-color-black);
}
.tools-img img {
  border-radius: 0.75rem;
  width: 100%;
}
.tools-grid-section {
  margin-bottom: 6.25rem;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.75rem;
}
.tgrid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.tgrid-img {
  height: 15.625rem;
  overflow: hidden;
}
.tgrid-img img {
  height: 100%;
  width: 100%;
  transition: transform 0.4s ease;
}
.tgrid-content {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.tgrid-content h4 {
  margin-bottom: 0rem;
  font-family: Roboto;
  font-weight: var(--av-font-weight-600);
  font-size: var(--av-font-size-24);
  line-height: 2.5rem;
  letter-spacing: -0.02rem;
  vertical-align: middle;
  color: var(--av-color-black);
}
.tgrid-content p {
  margin-bottom: 0rem;
  font-family: Roboto;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--av-color-text);
}
.testimonial-section {
  padding-bottom: 6.25rem;
}
.testimonial-section .features-head span {
  background: linear-gradient(90deg, #137861 0%, #197859 52.4%, #3c9a50 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 4.0625rem;
}
.testimonial-row {
  overflow: hidden;
  width: 100%;
  padding: 0.625rem 0rem;
}
.testimonial-track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  transform: translateX(-11.25rem);
  animation: scrollLeft 20s linear infinite;
}
.testimonial-track2 {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  transform: translateX(-5rem);
  animation: scrollRight 25s linear infinite;
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.testimonial-card {
  max-width: 31.25rem;
  background: var(--av-color-white-color);
  border-radius: 0.75rem;
  padding: 1.5625rem 1.875rem 1.5625rem 1.5625rem;
  box-shadow: 0rem 0rem 1.25rem 0rem #0000000d;
}
.testimonial-card .text {
  font-family: Roboto;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.875rem;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--av-color-text);
  margin-bottom: 1.25rem;
}
.author {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
.author-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.author-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.author img {
  width: 3.4375rem;
  height: 3.4375rem;
  border-radius: 50%;
}
.author h4 {
  font-family: Roboto;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #020210;
  margin-bottom: 0rem;
}
.author span {
  font-family: Roboto;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.875rem;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--av-color-text);
}
.task-wrapper {
  margin-top: 3.75rem;
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 1.875rem;
  align-items: center;
}
.task-cards {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  position: relative;
  z-index: 2;
  max-width: 27.8125rem;
}
.task-card {
  background: var(--av-color-white-color);
  border-radius: 1rem;
  padding: 1.25rem 1.25rem 1.75rem;
  box-shadow: 0rem 0.8125rem 6.25rem 0rem #c7c7c740;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
.task-head {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.3125rem;
}
.task-head h4 {
  font-family: Roboto;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2.5rem;
  letter-spacing: -0.02rem;
  color: var(--av-color-text);
  margin-bottom: 0rem;
}
.task-card p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.625rem;
  letter-spacing: 0%;
  color: var(--av-color-text);
  margin-bottom: 0rem;
}
.task-tags {
  display: flex;
  gap: 0.9375rem;
}
.task-tags a {
  background: var(--av-color-input-color);
  padding: 0.625rem 0.9375rem;
  font-family: Roboto;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 0%;
  border-radius: var(--av-radius-500);
  text-decoration: none;
}
.task-tags a span {
  color: #555555;
}
.taskcenter-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42.625rem;
  height: 32.5rem;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.taskring {
  position: absolute;
}
.ring-2 {
  right: 0;
}
.taskgreen-circle {
  position: absolute;
  width: 22.75rem;
  height: 22.75rem;
  transform: translate(-50%, -50%);
  top: 14%;
  left: 23.5%;
}
.tasklogo {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
@media (max-width: 1199.98px) {
  .task-wrapper {
    margin-top: 3.75rem;
    display: grid;
    grid-template-columns: 1fr 30.3125rem 1fr;
    gap: 1.875rem;
    align-items: center;
  }
  .task-cards {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    max-width: unset;
  }
  .taskcenter-visual {
    position: relative;
    width: 30.3125rem;
    height: 30.3125rem;
  }

  .taskring {
    position: absolute;
    width: 12.375rem;
    height: 30.125rem;
  }
  .ring-2 {
    right: 0;
  }
  .taskgreen-circle {
    position: absolute;
    width: 16.875rem;
    height: 16.875rem;
    inset: 22.2%;
    transform: translate(-50%, -50%);
  }
  .tasklogo {
    position: absolute;
    width: 5.625rem;
    inset: 50%;
    transform: translate(-50%, -50%);
  }
}
.performance-img {
  box-shadow: 0.75rem 0.75rem 3.125rem 0rem #00000014;
}
.performance-img img {
  width: 100%;
}
.performance-section {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 6.25rem;
}
.performance-img,
.performance-content {
  flex: 1 1 0;
  min-width: 0;
}
.performance-content .thunder-tag {
  margin-bottom: 1.5625rem;
}
.performance-content .features-head {
  margin-bottom: 1.25rem;
  text-align: start;
  line-height: 3.75rem;
}
.performance-content p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 2.25rem;
  letter-spacing: 0%;
  color: var(--av-color-text);
  margin-bottom: 1.5625rem;
}
.performance-checks {
  display: flex;
  flex-direction: column;
  gap: 1.4375rem;
}
.performance-card {
  background: #eef1ea;
  border-radius: 0.75rem;
  padding: 0.75rem 1.875rem 0.625rem 1.5625rem;
}
.perf-content {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
.perf-content h4 {
  font-family: Roboto;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2rem;
  letter-spacing: 0%;
  text-align: center;
  color: var(--av-color-text);
  margin-bottom: 0rem;
}

.platform-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  z-index: 0;
  pointer-events: none;
}
.platform-section {
  position: relative;
  padding-top: 3.75rem;
}
.platform-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.platform-content {
  max-width: 48%;
}
.platform-content .thunder-tag {
  margin: 0rem;
  margin-bottom: 1.5625rem;
}
.platform-content h2 {
  text-align: start;
}
.platform-content p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 2.25rem;
  letter-spacing: 0%;
  color: var(--av-color-text);
}
.platform-right {
  position: relative;
}
.platform-cards {
  display: flex;
  gap: 1.875rem;
}
.platform-card {
  background: var(--av-color-white-color);
  border-radius: 0.75rem;
  box-shadow: 0rem 0rem 1.5625rem 0rem #0000001a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.25rem 1.875rem;
  text-decoration: none;
}
.icon-circle {
  width: 5.3125rem;
  height: 5.3125rem;
}
.platform-card span {
  font-family: Roboto;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--av-color-black);
}
.arrow {
  position: absolute;
  left: -10.625rem;
  bottom: -27%;
}
.pricing-section {
  margin-bottom: 6.25rem;
  background: var(--av-color-bg);
  padding: 6.25rem 0rem;
}
.pricing-section .features-text {
  margin-bottom: 1.5625rem;
}
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.75rem;
}
.billing-toggle span {
  font-family: Roboto;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 2.25rem;
  letter-spacing: 0%;
  text-align: center;
  color: var(--av-color-text);
}
.toggle-switch {
  position: relative;
  width: 5rem;
  height: 2.5rem;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #e5e7eb;
  border-radius: 62.4375rem;
  transition: background-color 0.3s ease;
  border: 0.0625rem solid #e0e7ef;
}
.slider::before {
  content: "";
  position: absolute;
  height: 2.125rem;
  width: 2.125rem;
  left: 0.1875rem;
  top: 0.125rem;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.2);
}
input:checked + .slider {
  background: var(--av-color-white-color);
}
input:checked + .slider::before {
  transform: translateX(2.3125rem);
  background: linear-gradient(90deg, #137861 0%, #197859 52.4%, #3c9a50 100%);
}
.pricing-card .thunder-tag {
  margin: 0rem;
  margin-bottom: 1.25rem;
}
.pricing-card .features-head {
  text-align: start;
  font-family: Roboto;
  font-weight: 600;
  font-size: 2rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--av-color-black);
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--av-color-white-color);
  z-index: 0;
  border-radius: 0.75rem;
  pointer-events: none;
}
.pricing-card {
  position: relative;
  border-radius: 0.75rem;
  padding: 2.5625rem 2.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9375rem 1.25rem;
}
.feature {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
}
.ribbon {
  position: absolute;
  top: -0.5rem;
  right: 1rem;
}
.price-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.price-box .price span {
  background: linear-gradient(90deg, #137861 0%, #197859 52.4%, #3c9a50 100%);
  background-clip: border-box;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: Roboto;
  font-weight: 700;
  font-size: 2.875rem;
  line-height: 100%;
  letter-spacing: 0%;
  margin-right: 0.375rem;
}
.price-box .price {
  font-family: Roboto;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 2.25rem;
  letter-spacing: 0%;
  color: var(--av-color-text);
}
.plan-button {
  background: var(--av-color-text);
  color: var(--av-color-white-color);
  border: none;
  padding: 1.1875rem;
  border-radius: var(--av-radius-500);
  font-family: Roboto;
  font-weight: var(--av-font-weight-600);
  font-size: var(--av-font-size-20);
  line-height: 100%;
  letter-spacing: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.testimonial-swiper::before {
  background: none;
}
.testimonial-swiper {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.25rem;
  row-gap: 1.875rem;
  align-items: start;
  margin-top: 5rem;
}
.accordion-header {
  display: flex;
  align-items: center;
  gap: 0.8125rem;
}
.accordion-header h4 {
  margin-bottom: 0rem;
  font-family: Roboto;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 100%;
  letter-spacing: -0.02rem;
  color: var(--av-color-text);
}
.accordion-content p {
  margin: 1rem 0 0;
  font-family: Roboto;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--av-color-text);
}

.accordion-item:hover {
  border-left: 0.0625rem solid #000000 !important;
}
.accordion-item.active:hover {
  border-left: none !important;
}
.accordion-item {
  background-color: var(--av-color-white-color) !important;
  border-left: 0.0625rem solid var(--av-color-white-color) !important;
  border-radius: 0.75rem;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
  cursor: pointer;
  transition: 0.5s all;
}
.accordion-item.accordion-item.active:not(:first-of-type) {
  border-top: 0.0625rem solid !important;
}
.accordion-item.active {
  border-top: 0.0625rem solid var(--av-color-text);
  border-left: none !important;
}
.accordion-item.active .step-number {
  font-family: Roboto;
  font-weight: var(--av-font-weight-600);
  font-size: var(--av-font-size-18);
  line-height: 0rem;
  letter-spacing: -0.015rem;
}
.accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
}
.accordion-item.active .accordion-content {
  max-height: 18.75rem;
  opacity: 1;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.75rem !important;
  border-bottom-left-radius: 0.75rem !important;
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.75rem !important;
  border-top-right-radius: 0.75rem !important;
}
.questions-section {
  padding-bottom: 6.25rem;
}
.questions-section .features-head {
  max-width: 50.75rem;
}
.transform-section .features-text {
  max-width: 55rem;
}
.transform-img {
  max-width: 62.625rem;
  max-height: 26rem;
  height: auto;
  margin: 0 auto;
  margin-top: 3.75rem;
}
.transform-img img {
  width: 100%;
  height: 100%;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  transform: rotate(180deg);
}
.footer {
  position: relative;
  background: var(--av-color-bg);
  /* margin-top: -6.375rem; */
}
.footer-container {
  padding: 7.875rem 0rem 3.8125rem;
  /* display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; */
  align-items: center;
  position: relative;
}
.footer-brand {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.footer-brand .logo {
  width: 12.1875rem;
  height: 2.5rem;
}
.footer-brand .logo img {
  width: 100%;
  height: 100%;
}
.footer-brand p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 2.25rem;
  letter-spacing: 0%;
  color: #555555;
  margin-bottom: 0px;
  text-align: center;
}
.social-links {
  padding-left: 0px;
  display: flex;
  gap: 20px;
}
.social-links li {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--av-color-white-color);
  border: 1px solid var(--av-color-border-color);
  border-radius: var(--av-radius-500);
  transition: 0.9s all;
  cursor: pointer;
}
.social-links li img {
  transition: 0.9s all;
}
.social-links li:hover {
  background: var(--av-color-text);
  border: none;
}
.social-links li:hover img {
  filter: brightness(0) invert(1);
}
.footer-bottom {
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
  position: relative;
}
.copyright {
  padding: 1.25rem 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 2.25rem;
}
.footer-links a {
  font-family: Roboto;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: 0%;
  text-decoration: none;
  color: #555555;
}
.footer-links a:hover {
  color: #0f8f5f;
}
.copyright span {
  font-family: Roboto;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 2.25rem;
  letter-spacing: 0%;
  color: #555555;
}
@media (max-width: 430px) {
  .pricing-card {
    padding: 0px;
  }
}
@media (min-width: 1399.98px) {
  .footer-brand p {
    min-width: 36.25rem;
  }
}

.heading-profile,
.text-profile {
  position: absolute;
  width: 4.6875rem;
  height: 4.6875rem;
  border-radius: 50%;
  box-shadow: 0rem 0.25rem 1.5625rem 0rem #0000001a;
  z-index: 5;
}
.heading-profile.left-profile {
  top: 18%;
  left: -0.5rem;
}
.heading-profile.right-profile {
  top: 18%;
  right: -0.5rem;
}
.text-profile.left-profile {
  top: 36%;
  left: 3.125rem;
}
.text-profile.right-profile {
  top: 36%;
  right: 3.125rem;
}

.performance-img {
  border-radius: 0.75rem;
}
.recommendation {
  background: var(--av-color-white-color);
  padding: 1.875rem;
  border-radius: 0.75rem;
  box-shadow: 0.75rem 0.75rem 3.125rem 0rem #00000014;
}
.recommendation .header {
  display: flex;
  align-items: center;
  gap: 0.8125rem;
  margin-bottom: 1rem;
}

.recommendation .logo {
  width: 3.4375rem;
  height: 3.125rem;
}

.recommendation .header-text {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.recommendation .header-text h4 {
  font-family: Roboto;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2.5rem;
  letter-spacing: -0.02rem;
  vertical-align: middle;
  color: var(--av-color-text);
  margin-bottom: 0rem;
}

.recommendation .header-text p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2rem;
  letter-spacing: 0%;
  text-align: center;
  color: var(--av-color-text);
  margin-bottom: 0rem;
}

.recommendation .recommendation-card {
  background: var(--av-color-input-color);
  border-radius: 0.75rem;
  padding: 1.4375rem 1.875rem;
}
.recommendation .recommendation-card h3 {
  font-family: Roboto;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 2rem;
  letter-spacing: 0%;
  color: var(--av-color-text);
  margin-bottom: 0.9375rem;
}
.recommendation .list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}

.recommendation .list li {
  position: relative;
  padding-left: 1.3125rem;
  font-family: Roboto;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2rem;
  letter-spacing: 0%;
  color: var(--av-color-text);
  display: flex;
  align-items: center;
}

.recommendation .list li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background: var(--av-color-text);
  border-radius: 50%;
  position: absolute;
  left: 0;
}

@media (max-width: 399.98px) {
  .avento-hero .thunder-tag {
    padding: 0.75rem 0.9375rem;
  }
  .thunder-tag span {
    font-size: 1.0625rem;
  }
}
@media (max-width: 373px) {
  .footer-links {
    display: flex;
    gap: 0.9375rem;
  }
}

@media (max-width: 767.98px) {
  .copyright {
    align-items: start;
    flex-direction: column;
    gap: 0.625rem;
  }
  .features-head {
    font-size: 2rem;
  }
  .features-text {
    font-size: 1.125rem;
  }
  .transform-img {
    margin-top: 1.875rem;
  }
  .integration-section {
    margin-bottom: 3.125rem;
  }
  .questions-section {
    padding-bottom: 3.125rem;
  }
  .accordion-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.875rem;
  }
  .pricing-section {
    margin-bottom: 3.125rem;
  }
  .pricing-card {
    grid-template-columns: repeat(1, 1fr);
  }
  .price-box {
    margin-top: 1.5625rem;
  }
  .billing-toggle span {
    font-size: 1.125rem;
  }
  .platform-section {
    padding: 3.125rem 0rem;
    margin-bottom: 3.125rem;
  }

  .platform-section {
    padding: 3.125rem 0;
    margin-bottom: 3.125rem;
  }

  .platform-section .container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .platform-content {
    max-width: 100%;
  }

  .platform-cards {
    flex-wrap: wrap;
    justify-content: center;
  }

  .platform-card {
    width: 50%;
  }

  .arrow {
    display: none;
  }
  .platform-content .thunder-tag {
    margin: 0 auto;
    margin-bottom: 1.5625rem;
  }
  .platform-content h2 {
    text-align: center;
  }
  .performance-section {
    margin-bottom: 3.125rem;
  }
  .platform-content p {
    font-size: 1.125rem;
  }
  .performance-content p {
    font-size: 1.125rem;
  }
  .testimonial-section {
    padding-bottom: 3.125rem;
  }
  .task-wrapper {
    grid-template-columns: 1fr;
  }

  .taskcenter-visual {
    width: 17.5rem;
    height: 17.5rem;
  }

  .taskring {
    width: 8.75rem;
    height: 17.5rem;
  }

  .taskgreen-circle {
    width: 9.375rem;
    height: 9.375rem;
  }

  .tasklogo {
    width: 4.375rem;
  }

  .task-cards {
    flex-direction: column;
    gap: 1.25rem;
  }

  .task-head h4 {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }

  .task-card {
    padding: 1.125rem;
  }

  .testimonial-card {
    min-width: 17.5rem;
    padding: 1.25rem;
  }

  .author img {
    width: 2.8125rem;
    height: 2.8125rem;
  }

  .testimonials {
    padding-top: 2.5rem;
  }
  .tools-grid {
    margin-top: 1.875rem;
  }
  .tools-section {
    margin-bottom: 3.125rem;
  }
  .toolsassistant-section {
    margin-top: 1.875rem;
  }
  .integration-section .center-circle {
    width: 10rem;
    height: 10rem;
  }
  .integration-section .center-logo {
    width: 4.375rem;
  }
  .integration-section .cta-btn {
    width: 100%;
    height: 3.25rem;
    bottom: 0rem;
  }
  .assistant-section {
    margin-bottom: 3.125rem;
  }
  .powered-text p {
    font-size: 1.125rem;
    text-align: center;
  }
  .assistant-content .features-head {
    text-align: center;
  }
  .features-section {
    margin-bottom: 3.125rem;
  }
  .features-grid {
    padding: 3.125rem 0;
  }
  .feature-card {
    padding: 0.75rem 0.9375rem;
  }
  .feature-card--large {
    flex-direction: column;
  }
  .partner-company {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  .avento-content {
    padding-top: 3.125rem;
  }
  .av-hero-head {
    flex-direction: column;
    align-items: center;
  }
  .av-hero-head h1 {
    font-size: 2rem;
    text-align: center;
  }
  .green-main img {
    display: none;
  }
  .green {
    margin-bottom: 0;
  }
  .avento-content .hero-text {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 2.5rem;
  }
  .main-section {
    flex-direction: column;
    gap: 2.5rem;
  }
  .middle-element {
    margin-left: 0;
  }
  .middle-circle {
    width: 12.5rem;
    height: 12.5rem;
  }
  .middle-avento {
    width: 5rem;
  }
  .tab {
    width: 100%;
    max-width: 20rem;
  }
  .middle-tab {
    left: 0;
  }
  .hero-rings {
    display: none;
  }
  .middle-element {
    margin-left: 0;
    position: absolute;
    right: 0;
    top: 4%;
  }
  .left-element {
    width: 100%;
  }
  .left-element img {
    width: 100%;
  }
  .hero-btns {
    flex-direction: column;
    margin-bottom: 3.125rem;
  }
  .avento-content {
    padding-bottom: 1.875rem;
  }
  .companies-list {
    margin-bottom: 3.125rem;
  }
}

@media (max-width: 992.98px) {
  .performance-section {
    flex-direction: column;
  }
  .performance-content {
    order: 1;
  }
  .performance-img {
    order: 2;
  }
  .performance-content p {
    text-align: center;
  }
  .performance-content .features-head {
    text-align: center;
  }
  .performance-content .thunder-tag {
    margin: 0 auto;
    margin-bottom: 1.5625rem;
  }
  .integration-section.testimonial-section .features-text {
    max-width: 75%;
  }
  .tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .toolsassistant-section {
    flex-direction: column;
  }
  .assistant-section {
    flex-direction: column;
  }
  .assistant-content .thunder-tag {
    margin: 0 auto;
    margin-bottom: 1.5625rem;
  }
  .features-grid {
    grid-template-columns: unset;
  }
  .hero-icon {
    display: none;
  }
}

@media (max-width: 1199.98px) and (min-width: 768px) {
  .pricing-card {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "header header"
      "features price";
  }
  .pricing-card > div:first-child {
    grid-area: header;
  }
  .features {
    grid-area: features;
    text-align: left;
  }
  .price-box {
    grid-area: price;
  }
  .pricing-card .thunder-tag {
    margin: 0 auto;
    margin-bottom: 1.25rem;
  }
  .pricing-card .features-head {
    text-align: center;
  }

  .platform-content .thunder-tag {
    margin: 0 auto;
    margin-bottom: 1.5625rem;
  }

  .platform-section .container {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .platform-content {
    max-width: 100%;
  }

  .platform-content h2 {
    text-align: center;
  }

  .platform-content p {
    max-width: 56.1875rem;
  }

  .arrow {
    display: none;
  }
  .task-wrapper {
    grid-template-columns: 1fr;
  }

  .taskcenter-visual {
    height: 28.75rem;
  }

  .task-cards {
    flex-direction: row;
  }
  .taskring {
    height: 28.75rem;
  }
  .testimonial-card {
    min-width: 22.5rem;
    padding: 1.375rem 1.5rem;
  }

  .testimonials {
    padding-top: 3.125rem;
  }
  .tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .integration-section .center-circle {
    width: 15.625rem;
    height: 15.625rem;
  }
  .integration-section .center-logo {
    width: 5.625rem;
  }
  .integration-section .cta-btn {
    width: 16.25rem;
    height: 3.5rem;
    font-size: 1.125rem;
  }
  .avento-content {
    padding-top: 5.625rem;
  }
  .av-hero-head h1 {
    font-size: 2.375rem;
  }
  .avento-content .hero-text {
    font-size: 1.125rem;
  }
  .main-section {
    flex-direction: column;
    gap: 3.125rem;
  }
  .left-element img {
    max-width: 100%;
  }
  .middle-element {
    margin-left: 0;
    bottom: 40%;
    position: absolute;
    right: 0;
  }
  .right-element {
    display: flex;
    justify-content: center;
  }
  .middle-tab {
    left: 0;
  }
  .hero-rings .left-img {
    left: 1.25rem;
  }
  .hero-rings .right-img {
    right: 1.25rem;
  }
  .tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
  }
}

@media (max-width: 576.98px) {
  .integration-section.testimonial-section .features-text {
    max-width: 100%;
  }
  .tools-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .feature-card {
    padding: 2.5rem 1.875rem;
  }
  .feature-card--large {
    grid-column: unset;
  }
}

@media (max-width: 499px) {
  .left-element {
    height: 12.5rem !important;
  }
  .left-element img {
    height: 100% !important;
  }
  .middle-element {
    top: 0%;
  }
}

@media (max-width: 899.98px) {
  /* .footer-container {
    grid-template-columns: 1fr 1fr;
  } */

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 599.98) {
  /* .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  } */

  .footer-brand {
    grid-column: span 1;
  }
}

@media (max-width: 1399.98px) and (min-width: 1199.98px) {
  .main-section {
    gap: 1.5rem;
  }

  .middle-element {
    margin-left: -28.125rem;
  }

  .right-element {
    max-width: 22.5rem;
  }

  .tab {
    width: 100%;
  }

  .middle-tab {
    left: 0;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.3125rem;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 1.625rem;
  height: 0.1875rem;
  background: #000;
  border-radius: 0.125rem;
  transition: 0.3s;
}
@media (max-width: 1199.98px) {
  .avento-header {
    position: relative;
    z-index: 1000;
    background: white;
  }
  .hamburger {
    display: flex;
  }
  .header-items {
    position: absolute;
    top: calc(100% + 0.625rem);
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1.25rem 1.5rem;
    border-radius: 0rem 0rem 1.25rem 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.625rem);
    transition: 0.3s ease;
  }
  .header-items ul {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding-left: 0rem;
  }
  .auth {
    width: 100%;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
  }
  .auth a {
    width: 100%;
    max-width: 15rem;
  }
  .header-items.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-0.75rem);
  }
  .avento-header:has(.header-items.active) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
  }
}

@media (min-width: 1399.98px) {
  .integration-steps {
    max-width: 36.25rem;
  }
  .tools-img {
    width: 100%;
  }
  .tools-img img {
    width: 100%;
    height: 100%;
  }
  .assistant-img {
    width: 100%;
  }
  .assistant-img img {
    width: 100%;
    height: 100%;
  }
}
/* ANIMATIONS */
.blink {
  animation: blinkPulse 2s ease-in-out infinite;
}

@keyframes blinkPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.circular-motion img {
  animation: orbit 20s linear infinite;
}
.dot {
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}
.tab {
  animation: slideLeftRight 3s ease-in-out infinite;
}
@keyframes slideLeftRight {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(1.25rem);
  }
}
.tab:nth-child(1) {
  animation-delay: 0s;
}
.tab:nth-child(2) {
  animation-delay: 0.5s;
}
.tab:nth-child(3) {
  animation-delay: 1s;
}
.swirl-arrow {
  animation: floatGentle 3s ease-in-out infinite;
}
@keyframes floatGentle {
  0%,
  100% {
    transform: translateY(0rem);
  }
  50% {
    transform: translateY(-0.625rem);
  }
}
.header-items ul li a::after {
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: linear-gradient(90deg, transparent, #197859, transparent);
  background-size: 300% 100%;
  opacity: 0;
  transition: opacity 0.5s;
}

.header-items ul li a:hover {
  color: var(--av-color-primary);
}

.header-items ul li a:hover::after {
  opacity: 1;
  animation: shimmer111 2s linear infinite !important;
}

@keyframes shimmer111 {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.trial-btn,
.demo-btn,
.plan-button,
.cta-btn {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.trial-btn::before,
.demo-btn::before,
.plan-button::before,
.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25),
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.trial-btn:hover::before,
.demo-btn:hover::before,
.plan-button:hover::before,
.cta-btn:hover::before {
  transform: translateX(100%);
}

@keyframes float-random {
  0% {
    transform: translate3d(var(--x), var(--y), 0);
  }
  50% {
    transform: translate3d(
      calc(var(--x) + var(--fx)),
      calc(var(--y) + var(--fy)),
      0
    );
  }
  100% {
    transform: translate3d(var(--x), var(--y), 0);
  }
}

.parallax-effect img {
  --x: 0rem; /* mouse-controlled */
  --y: 0rem;
  --fx: 0rem; /* random float */
  --fy: 0rem;

  transform: translate3d(var(--x), var(--y), 0);
  animation: float-random ease-in-out infinite;
  will-change: transform;
}

@keyframes float-random {
  0% {
    transform: translate3d(var(--x), var(--y), 0);
  }
  50% {
    transform: translate3d(
      calc(var(--x) + var(--fx)),
      calc(var(--y) + var(--fy)),
      0
    );
  }
  100% {
    transform: translate3d(var(--x), var(--y), 0);
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 88.75rem !important;
  }
}

a.signup,
a.login {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

a.signup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25),
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
a.login::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(76, 114, 85, 0.25),
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

a.signup:hover,
a.login:hover {
  animation: gradientMoves 3s ease infinite;
}

a.signup:hover::before,
a.login:hover::before {
  transform: translateX(100%);
}

.signup::after,
.trial-btn::after,
.plan-button::after,
.cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    #137861 0%,
    #197859 25%,
    #3c9a50 50%,
    #197859 75%,
    #137861 100%
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.signup:hover::after,
.trial-btn:hover::after,
.plan-button:hover::after,
.cta-btn:hover::after {
  opacity: 1;
  animation: gradientMoves 2s linear infinite alternate;
}

@keyframes gradientMoves {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.signup span,
.trial-btn span,
.plan-button span,
.cta-btn span {
  z-index: 1;
}

.cta-btn span {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.demo-btn:hover img,
.cta-btn:hover img {
  animation: iconBounce 0.6s ease-in-out infinite;
}
@keyframes iconBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

.feature-card:hover {
  animation: shadowPop 0.35s ease forwards;
}

@keyframes shadowPop {
  from {
    box-shadow: 0 0 0 0 rgb(0, 0, 0);
  }
  to {
    box-shadow: 0rem 0.25rem 0 0rem rgb(0, 0, 0);
  }
}

.feature-card:not(:hover) {
  animation: shadowOut 0.35s ease forwards;
}

@keyframes shadowOut {
  from {
    box-shadow: 0rem 0.25rem 0 0rem rgb(0, 0, 0);
  }
  to {
    box-shadow: 0 0 0 0 rgb(0, 0, 0);
  }
}

.feature-card:hover img {
  transform: rotate(360deg);
}
.feature-card img {
  transition: transform 0.6s ease;
  display: block;
}
.feature-card--large .robot-img {
  position: relative;
  right: -1.25rem;
}
.feature-card--large:hover .robot-img {
  transform: rotateY(360deg);
}
.img0 {
  margin-bottom: 0.9375rem !important;
}
.feature-card--large:hover {
  animation: none;
}
.feature-card--large:not(:hover) {
  animation: none;
}



.tgrid:hover .tgrid-img {
  border-radius: 0.75rem;
}
.tgrid:hover .tgrid-img img {
  transform: scale(1.15) rotate(2deg);
}
.tgrid:hover .tgrid-content h4 {
  background: linear-gradient(90deg, #137861 0%, #3c9a50 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.platform-card:hover {
  transform: translateY(-0.9375rem) scale(1.08);
}
.platform-card {
  transition: 0.4s ease all;
}
.arrow {
  animation: floatHere 3s ease-in-out infinite;
}
@keyframes floatHere {
  0%,
  100% {
    transform: translateY(0rem);
  }
  50% {
    transform: translateY(-0.625rem);
  }
}


@media (min-width: 992.98px) and (max-width: 1199.98px) {
  .features-grid {
    grid-template-columns: unset;
  }
}
.accordion-content ul li {
  font-family: Roboto;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0%;
  color: var(--av-color-text);
}

.tools-img {
  position: relative;
}

.tool-image {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.tool-image.active {
  opacity: 1;
  position: relative;
}

.list li {
  min-height: 2rem;
  list-style-type: none;
}

.typing::after {
  content: "|";
  animation: blink 1s infinite;
  color: var(--av-color-primary);
}

@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
