.chat-bot-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
}

.chat-bot-image .chat-bot-illustration {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-top: -250px;
  margin-left: 80px;
}

.chat-bot-text .chat-text {
  position: absolute;
  display: flex;
  align-items: center;
  text-wrap: nowrap;
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  margin: 0;
  padding: 5px;
  gap: 14px;
  background-color: #ffffff26;
  border-radius: 45px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.chat-bot-illustration-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}

.chat-bot-illustration {
  width: 100%;
  height: auto;
  display: block;
}

.chat-bot-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.chat-bot-text .chat-text {
  position: absolute;
  min-width: 200px;
}

.chat-bot-text .chat-text.first-text {
  left: 25%;
  top: 5%;
}

.chat-bot-text .chat-text.second-text {
  left: 20%;
  top: 60%;
}

.chat-bot-text .chat-text.third-text {
  left: 42%;
  top: 88%;
}

.chat-bot-text .chat-text.fourth-text {
  left: 58%;
  top: 65%;
}

.chat-bot-text .chat-text.fifth-text {
  left: 60%;
  top: 5%;
}

@media (min-width: 1920px) {
  .chat-bot-text .chat-text.first-text {
    left: 25%;
    top: 18%;
  }

  .chat-bot-text .chat-text.second-text {
    left: 20%;
    top: 65%;
  }

  .chat-bot-text .chat-text.third-text {
    left: 42%;
    top: 93%;
  }

  .chat-bot-text .chat-text.fourth-text {
    left: 60%;
    top: 70%;
  }

  .chat-bot-text .chat-text.fifth-text {
    left: 60%;
    top: 18%;
  }
}

@media (min-width: 2560px) {
  .chat-bot-text .chat-text.first-text {
    left: 25%;
    top: 25%;
  }

  .chat-bot-text .chat-text.second-text {
    left: 20%;
    top: 70%;
  }

  .chat-bot-text .chat-text.third-text {
    left: 42%;
    top: 94%;
  }

  .chat-bot-text .chat-text.fourth-text {
    left: 62%;
    top: 75%;
  }

  .chat-bot-text .chat-text.fifth-text {
    left: 60%;
    top: 25%;
  }
}

.chat-bot-text .chat-text p {
  margin: 0;
}

.calculator-text {
  margin: 0px 80px;
  margin-bottom: 60px;
}

.calculator-text h2 {
  font-weight: 600;
  font-size: 38px;
  margin: 0;
  color: white;
  margin-bottom: 10px;
  line-height: 150%;
}

.calculator-text p {
  color: #999999;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 150%;
}

.calculator-container {
  margin: 0 80px;
}

.calculator-content h2 {
  font-weight: 600;
  font-size: 30px;
  margin: 0;
  color: white;
  margin-bottom: 20px;
  line-height: 120%;
}

.calculator-content {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid #262626;
  border-radius: 10px;
  background-color: #1a1a1a;
}

.average-salary {
  max-width: 340px;
}

.cost-calculator {
  display: flex;
  flex-direction: column;
}

.cost-calculator .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cost-calculator input {
  background-color: transparent;
  border: 1px solid #38383c;
  border-radius: 8px;
  padding: 16px 45px 16px 20px;
  margin-bottom: 20px;
  color: white;
  width: 100%;
  line-height: 150%;
  color: #50515a;
  font-weight: 900;
  font-size: 20px;
}

.cost-calculator input::placeholder {
  color: #50515a;
  font-weight: 900;
  font-size: 20px;
}

.cost-calculator input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
  transition: ease-in 0.3s;
}

.cost-calculator input::-webkit-outer-spin-button,
.cost-calculator input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.currency-symbol {
  position: absolute;
  right: 15px;
  top: 24px;
  color: white;
  pointer-events: none;
  font-weight: 900;
  font-size: 14px;
}

.cost-calculator button {
  background-color: var(--button-color);
  border: none;
  border-radius: 8px;
  padding: 16px;
  color: #141414;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cost-ai {
  width: 55%;
  border-left: 1px solid #262626;
  padding-left: 50px;
}

.cost-ai-content {
  display: flex;
  max-width: 425px;
  justify-content: space-between;
  padding-bottom: 20px;
}

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

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

.cost-ai-content .first p {
  color: white;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 150%;
}

.cost-ai-content .second p {
  color: #d0ff71;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 150%;
}

.cost-ai-content .first .amount,
.cost-ai-content .second .amount {
  font-size: 30px;
}

.note {
  color: #999999;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: 150%;
}

.feedbacks-container {
  margin: 0 80px;
  display: flex;
  gap: 140px;
}

.feedbacks-container img {
  max-width: 600px;
  width: 100%;
  margin-top: -150px;
}

.feedbacks-text {
  max-width: 35%;
}

.feedbacks-text h2 {
  font-size: 38px;
  font-weight: 600;
  line-height: 120%;
  color: white;
  margin: 0;
  margin-bottom: 10px;
}

.feedbacks-text p {
  color: #999999;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 150%;
}

@media (max-width: 1320px) {
  .chat-bot-text .chat-text {
    position: absolute;
    min-width: 120px;
  }
  .chat-bot-text .chat-text p {
    font-size: 10px;
  }
  .chat-bot-text .chat-text img {
    width: 30px;
    height: 30px;
  }
  .chat-bot-text .chat-text.first-text {
    left: 25%;
    top: -5%;
  }

  .chat-bot-text .chat-text.second-text {
    left: 20%;
    top: 60%;
  }

  .chat-bot-text .chat-text.third-text {
    left: 44%;
    top: 88%;
  }

  .chat-bot-text .chat-text.fourth-text {
    left: 62%;
    top: 60%;
  }

  .chat-bot-text .chat-text.fifth-text {
    left: 60%;
    top: -5%;
  }
}

@media (max-width: 1200px) {
  .chat-bot-text .chat-text.first-text {
    left: 25%;
    top: -15%;
  }

  .chat-bot-text .chat-text.second-text {
    left: 20%;
    top: 55%;
  }

  .chat-bot-text .chat-text.third-text {
    left: 44%;
    top: 88%;
  }

  .chat-bot-text .chat-text.fourth-text {
    left: 58%;
    top: 55%;
  }

  .chat-bot-text .chat-text.fifth-text {
    left: 60%;
    top: -15%;
  }
}

@media (max-width: 1024px) {
  .chat-bot-image {
    padding: 0 !important;
    overflow: hidden;
    height: 80vh;
  }
  .chat-bot-image .chat-bot-illustration {
    margin: 0;
    margin-left: 10%;
    margin-top: -100px;
  }
  .chat-bot-text .chat-text.first-text {
    left: 25%;
    top: 20%;
  }

  .chat-bot-text .chat-text.second-text {
    left: 20%;
    top: 70%;
  }

  .chat-bot-text .chat-text.third-text {
    left: 45%;
    top: 88%;
  }

  .chat-bot-text .chat-text.fourth-text {
    left: 65%;
    top: 70%;
  }

  .chat-bot-text .chat-text.fifth-text {
    left: 60%;
    top: 20%;
  }
  .chat-bot-text .chat-text {
    position: absolute;
    min-width: 120px;
  }
  .chat-bot-text .chat-text p {
    font-size: 10px;
  }
  .chat-bot-text .chat-text img {
    width: 30px;
    height: 30px;
  }
  .container.calculator {
    margin-top: 50px;
  }
  .calculator-container {
    margin: 0 16px;
  }
  .calculator-text {
    margin: 0 16px;
    margin-bottom: 50px;
  }
  .feedbacks-container {
    margin: 0 16px;
  }
  .cost-ai {
    width: 100%;
    border-left: none;
  }
  .feedbacks-container {
    flex-direction: column;
    gap: 0;
    overflow: hidden;
  }
  .feedbacks-container img {
    max-width: 100%;
    margin-top: 0px;
    transform: scale(1.15);
    transform-origin: center;
  }
  .feedbacks-text {
    order: 2;
    max-width: 100%;
  }
  .feedbacks-image {
    order: 1;
  }
}

@media (max-width: 768px) {
  .calculator-content {
    flex-direction: column;
  }
  .cost-ai {
    border-top: 1px solid #262626;
    padding-top: 30px;
    margin-top: 30px;
    padding-left: 0px;
  }
  .chat-bot-text .chat-text.first-text {
    left: 25%;
    top: 5%;
  }

  .chat-bot-text .chat-text.second-text {
    left: 20%;
    top: 65%;
  }

  .chat-bot-text .chat-text.third-text {
    left: 45%;
    top: 90%;
  }

  .chat-bot-text .chat-text.fourth-text {
    left: 62%;
    top: 65%;
  }

  .chat-bot-text .chat-text.fifth-text {
    left: 60%;
    top: 5%;
  }
}

@media (max-width: 550px) {
  .chat-bot-image .chat-bot-illustration {
    transform: scale(1.5);
    transform-origin: center;
    margin: 0;
    margin-left: 10%;
    margin-top: -100px;
  }
  .chat-bot-text .chat-text.first-text {
    left: 5%;
    top: -15%;
  }

  .chat-bot-text .chat-text.second-text {
    left: 5%;
    top: 75%;
  }

  .chat-bot-text .chat-text.third-text {
    left: 35%;
    top: 120%;
  }

  .chat-bot-text .chat-text.fourth-text {
    left: 65%;
    top: 80%;
  }

  .chat-bot-text .chat-text.fifth-text {
    left: 60%;
    top: -15%;
  }
}

@media (max-width: 460px) {
  .chat-bot-text .chat-text.first-text {
    left: 5%;
    top: -30%;
  }

  .chat-bot-text .chat-text.second-text {
    left: 5%;
    top: 75%;
  }

  .chat-bot-text .chat-text.third-text {
    left: 35%;
    top: 120%;
  }

  .chat-bot-text .chat-text.fourth-text {
    left: 60%;
    top: 80%;
  }

  .chat-bot-text .chat-text.fifth-text {
    left: 60%;
    top: -30%;
  }
}
