body {
  font-family: Inter;
  margin: 0;
}

button {
  font-family: Inter;
  height: 50px;
  background: #141414;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

lord-icon {
  height: 20px;
  width: 20px;
  min-width: 20px;
  margin-top: 4px;
}

.main {
  padding: 45px 150px;
  max-width: 1700px;
}

@media screen and (max-width: 1400px) {
  .main {
    padding: 45px 100px;
  }
}

@media screen and (max-width: 1250px) {
  .main {
    padding: 45px 50px;
  }
}

@media screen and (max-width: 1000px) {
  .main {
    padding: 45px 10px;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.primary-color {
  color: #98db07;
}

.regenerate-color {
  color: #cb48b7;
}

.neutral-color-0 {
  color: white;
}

.neutral-color-1 {
  color: #141414;
}

.neutral-color-2 {
  color: #333333;
}

.neutral-color-3 {
  color: #555555;
}

.neutral-color-4 {
  color: #888888;
}

.title {
  font-size: 72px;
  line-height: 80px;
  font-weight: 600;
}

.sutbtitle {
  font-size: 48px;
  line-height: 55px;
  font-weight: 600;
}

.text {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
}

.text-bold {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.text-big {
  font-size: 28px;
  line-height: 28px;
  font-weight: 500;
}

.text-reference {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.pointer {
  cursor: pointer;
}

.ellipsis-text {
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  max-width: 95%;
}

.butt-disabled {
  background: #dddddd;
  color: white;
  width: 30%;
  cursor: default;
}

.butt-enabled {
  background: #141414;
  color: white;
  width: 30%;
}

.butt-copied {
  background: #98db07;
  color: #141414;
  width: 30%;
}

.butt-book {
  background: #98db07;
  width: 215px;
  color: #141414;
}

.content {
  padding: 20px 50px;
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
  height: 100%;
}

.content-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 25px;
  padding: 30px;
  overflow-x: hidden;
}

.item-img {
  width: 80%;
  margin: auto;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

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

.feed-card {
  display: flex;
  flex-direction: column;
  gap: 25px;
  box-shadow: 0px 32px 69px -11px #0000001a;
  padding: 25px;
  border-radius: 8px;
  width: 90%;
}

.feed-link {
  height: 50px;
  background: #f1f1f1;
  border-radius: 8px;
  width: 70%;
  display: flex;
  justify-content: start;
  align-items: center;
  padding-left: 15px;
}

.footer {
  background-color: #141414;
  width: calc(100% - 300px);
  padding: 45px 150px 30px 150px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.footer-info {
  padding: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 200px;
}

.footer-item {
  gap: 10px;
}

.footer-title {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-main-title {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.middle {
  background: linear-gradient(180deg, #f7eeff 0%, #f6ffe1 100%);
  height: 420px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}

.slider-box {
  width: 100%;
}

.slider-text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 20px;
}

.slider-title {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 10px;
}

.slider-content {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  margin: auto;
  width: 550px;
  box-shadow: 0px 9px 138px 0px #000000;
}

.indicator-color {
  background-color: #98db07 !important;
}

.active {
  width: 30px !important;
  border-radius: 10px !important;
}

.logo {
  width: 130px;
}

.skeleton {
  background-image: -webkit-linear-gradient(left, #ececec 0px, #f4f4f4 40px, #ececec 80px);
  background-image: -o-linear-gradient(left, #ececec 0px, #f4f4f4 40px, #ececec 80px);
  background-image: linear-gradient(90deg, #ececec 0px, #f4f4f4 40px, #ececec 80px);
  background-size: 250px;
  -webkit-animation: shine-loading-image 2s infinite ease-out;
  animation: shine-loading-image 2s infinite ease-out;
}

@-webkit-keyframes shine-loading-image {
  0% {
    background-position: -32px;
  }
  40%,
  100% {
    background-position: 208px;
  }
}

@keyframes shine-loading-image {
  0% {
    background-position: -32px;
  }
  40%,
  100% {
    background-position: 208px;
  }
}

.scroll {
  background-color: transparent;
  &::-webkit-scrollbar {
    width: 18px;
  }

  &::-webkit-scrollbar-track {
    background-color: #fafafa;
  }

  &::-webkit-scrollbar-thumb {
    background-color: #d9d9d9;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
    max-height: 10px !important;
  }

  &::-webkit-scrollbar-thumb:hover {
    background-color: #d9d9d9;
  }
}

.slider-container {
  height: 700px !important;
  overflow-y: hidden;
}

input {
  height: 50px;
  background: white;
  border-radius: 8px;
  display: flex;
  justify-content: start;
  align-items: center;
  padding-left: 15px;
  outline: none;
  width: 350px;
  border: none;
}

.actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

.hs-button {
  width: 100px !important;
  background: #98db07;
  color: black;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-family: Inter;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 54px;
  cursor: pointer;
  border: none;
}

.submitted-message {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

#hubspot-form {
  box-shadow: 0px 9px 138px 0px #000000;
}