.research-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.research-overlay.show {
  opacity: 1;
  user-select: auto;
  pointer-events: auto;
}

.research-popup {
  position: relative;
  max-width: 738px;
  max-height: 95%;
  width: 100%;
  padding: 50px 100px;
  background: #1E2428;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
.research-popup::-webkit-scrollbar {
  width: 10px;
  border-radius: 20px;
}
.research-popup::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.5);
}
.research-popup::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
}
.research-popup textarea {
  resize: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 20px;
  height: 130px;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.research-popup textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.research-popup input {
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.research-popup input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.research-popup .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  border-radius: 16px;
  background: #F3287A;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-top: 24px;
}

textarea[name=research_ta1] {
  margin-top: 24px;
}

.textarea-flex {
  display: flex;
  align-self: center;
  justify-content: center;
}

input[name=research_name] {
  margin-top: 24px;
}

input[name=researchContactMess] {
  margin-top: 24px;
}

input[name=researchContactPhone] {
  margin-top: 24px;
}

textarea[name=research_ta2] {
  margin-top: 24px;
}

.research-popup__close {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}

.research-popup__header {
  text-align: center;
  color: #fff;
}
.research-popup__header .title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}
.research-popup__header p {
  font-size: 16px;
}

.research-popup__radio {
  margin-top: 24px;
}

.research-popup__radio-title {
  font-size: 16px;
  color: #fff;
  margin-bottom: 12px;
}
.research-popup__radio-title span {
  color: #FF9838;
}

.research-popup__radio-input {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.research-popup__radio-input:last-child {
  margin-bottom: 0;
}
.research-popup__radio-input .radio {
  width: 20px;
  height: 20px;
  border: 2px solid #898989;
  border-radius: 50%;
  cursor: pointer;
  flex: none;
}
.research-popup__radio-input .radio.active {
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #FF3888;
}
.research-popup__radio-input .radio.active:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF3888;
}
.research-popup__radio-input .radio-text {
  color: #fff;
}

.research-error-msg {
  display: none;
  font-size: 12px;
  color: #E95570;
  margin-top: 5px;
}

.research-popup__textarea-group {
  position: relative;
}

#researchta1Error {
  position: absolute;
}

.research-popup__textarea-counter {
  font-size: 12px;
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
}

.research-popup__tumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  border-radius: 12px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.15);
  margin: 24px 0;
}

.research-popup__tumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.research-popup__tumb.active {
  background: #FF3888;
  border-radius: 10px;
}

.research-popup__select {
  margin: 24px 0 0 0;
}

.research-popup__select {
  position: relative;
}

#researchSelectError {
  z-index: 1;
}

.research-popup__select-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}
.research-popup__select-title svg {
  transition: 0.3s ease-in-out;
}

.research-popup__select-title.show svg {
  transform: rotate(-180deg);
}

.research-popup__select-options {
  position: relative;
  max-height: 0;
  user-select: none;
  pointer-events: none;
  width: 100%;
  opacity: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  margin-top: 4px;
  z-index: 2;
  transition: 0.3s ease-in-out;
}

.research-popup__select-options.show {
  max-height: 1000px;
  user-select: auto;
  pointer-events: auto;
  opacity: 1;
}

.research-popup__select-option {
  display: flex;
  align-items: center;
  height: 30px;
  font-size: 16px;
  color: #898989;
  transition: 0.3s ease-in-out;
  padding: 10px;
  cursor: pointer;
  border-radius: 8px;
}
.research-popup__select-option:hover {
  background: #2C3135;
}

.research-pp-cb {
  display: flex;
  align-items: center;
  color: #fff;
  margin: 40px 0 0 0;
}
.research-pp-cb .cb {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #fff;
  margin-right: 8px;
}
.research-pp-cb .cb.active {
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #FF3888;
}
.research-pp-cb .cb.active:before {
  display: flex;
  align-items: center;
  justify-content: center;
  content: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2221%22%20viewBox%3D%220%200%2020%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M4.16699%2010.3106L8.33431%2014.894L16.667%205.72729%22%20stroke%3D%22%23F8F8F8%22%20stroke-width%3D%221.66667%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20/%3E%3C/svg%3E");
}
.research-pp-cb a {
  color: #FF3888;
  text-decoration: underline;
  margin-left: 8px;
}

.footer__wrapper {
  position: relative;
}

.unlimited-footer_btn {
  position: absolute;
  bottom: 160px;
  right: 200px;
  max-width: 453px;
  margin: 0;
}

.research {
  width: 98%;
  margin: 130px 0;
}

.research-wrapper {
  background: #000 url("../../assets/img/research/bg.webp") no-repeat center/cover;
  border-radius: 42px;
  padding: 45px 90px;
}

.research-title {
  position: relative;
  font-size: 52px;
  font-weight: 600;
  color: #fff;
  max-width: 1089px;
}
.research-title span {
  position: absolute;
  top: 40px;
  left: 900px;
  font-size: 38px;
  font-weight: 600;
  background: #5CB24B;
  border-radius: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 466px;
  width: 100%;
  height: 61px;
  box-shadow: 0 11px 56px 0 rgba(92, 178, 75, 0.76);
  transform: rotate(-3deg);
}

.research-text {
  max-width: 831px;
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin: 11px 0 31px 0;
}

.research-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  gap: 9px;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  height: 45px;
  max-width: 831px;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 16px;
  background: transparent;
}

.research-btn.mob {
  display: none;
}

.research-steps {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 24px;
}

.research-step {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 0 30px;
  height: 100px;
  border-radius: 24px;
  width: 100%;
  box-sizing: border-box;
  color: #fff;
}
.research-step .step-stiker {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 33px 0 rgba(236, 152, 116, 0.27);
  background: #6c58e5;
  transform: rotate(-3deg);
  height: 35px;
  max-width: 239px;
  width: 100%;
  font-size: 22px;
  font-weight: 600;
  border-radius: 37px;
}
.research-step .step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 47px;
  border-radius: 14px;
  border: 0.59px solid rgba(255, 255, 255, 0.2);
  font-size: 19px;
  font-weight: 500;
  flex: none;
}
.research-step .step-text {
  font-weight: 700;
  font-size: 24px;
}
.research-step:nth-child(1) {
  background: #161616 url("../../assets/img/research/step1.webp") no-repeat center center;
}
.research-step:nth-child(2) {
  background: #161616 url("../../assets/img/research/step2.webp") no-repeat center center;
}
.research-step:nth-child(3) {
  background: #161616 url("../../assets/img/research/step3.webp") no-repeat center center;
}

.research-banner {
  display: flex;
  align-items: center;
  height: 166px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 0 0 40px 40px;
  width: 100%;
  margin-top: 90px;
  background: #171b1f url("../../assets/img/research/bunner-bg.png") no-repeat center/cover;
  padding-left: 280px;
}

.research-banner-title {
  position: relative;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 130%;
}
.research-banner-title span {
  position: absolute;
  bottom: -10px;
  right: -100px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  max-width: 325px;
  width: 100%;
  border: 0.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 49px;
  box-shadow: 9px 10px 43px 0 rgba(92, 178, 75, 0.41);
  background: rgba(92, 178, 75, 0.02);
  transform: rotate(-1deg);
  font-size: 29px;
  font-weight: 600;
}

.research-banner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  max-width: 165px;
  width: 100%;
  height: 45px;
  border: 1px solid #fff;
  border-radius: 16px;
  cursor: pointer;
  margin-left: 150px;
  margin-top: 60px;
  color: #fff;
  background: transparent;
}

.success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  user-select: none;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.success-modal-overlay.show {
  user-select: auto;
  pointer-events: auto;
  opacity: 1;
}

.success-modal {
  max-width: 620px;
  width: 100%;
  background: #1E2428;
  border-radius: 12px;
  padding: 40px 80px;
}

.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5CB24B;
  border-radius: 24px;
  width: 76px;
  height: 76px;
  margin: auto auto 24px auto;
}

.success-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: #F8F8F8;
}

.success-text {
  text-align: center;
  font-size: 16px;
  color: #F8F8F8;
  margin: 12px 0 20px 0;
}

.success-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F8F8;
  max-width: 420px;
  width: 100%;
  height: 45px;
  margin: auto;
  color: #151B1F;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

@media screen and (max-width: 1515px) {
  .research-banner {
    padding-left: 100px;
  }
  .research-title {
    font-size: 42px;
  }
  .research-title span {
    font-size: 30px;
    max-width: 400px;
    height: 50px;
    left: 700px;
    top: 30px;
  }
  .research-text {
    font-size: 18px;
    max-width: 600px;
  }
  .research-step .step-text {
    font-size: 18px;
  }
  .research-step .step-stiker {
    font-size: 18px;
  }
}
@media screen and (max-width: 1290px) {
  .research-wrapper {
    background: #000 url("../../assets/img/research/bg.webp") no-repeat 80%/cover;
  }
  .research-step {
    padding: 10px;
    height: 80px;
    gap: 10px;
  }
  .research-step .step-text {
    font-size: 16px;
  }
  .research-step .step-stiker {
    font-size: 16px;
  }
  .research-btn {
    max-width: 400px;
  }
}
@media screen and (max-width: 1226px) {
  .research-banner {
    padding-left: 0;
    justify-content: center;
  }
  .research-wrapper {
    padding: 30px 50px;
  }
  .research-title {
    font-size: 38px;
  }
  .research-title span {
    font-size: 28px;
    max-width: 330px;
    left: 600px;
  }
}
@media screen and (max-width: 1024px) {
  .research-banner-title {
    font-size: 30px;
  }
  .research-banner-title span {
    max-width: 260px;
    font-size: 24px;
    right: -65px;
  }
  .research-banner-btn {
    margin-left: 100px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .research-banner {
    background: #171b1f url("../../assets/img/research/bunner-bg-mobile.png") no-repeat center/cover;
    height: 176px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0 0 40px 40px;
    flex-direction: column;
  }
  .research-banner-title {
    max-width: 267px;
    font-size: 16px;
    font-weight: 600;
  }
  .research-banner-title br {
    display: none;
  }
  .research-banner-title span {
    height: 24px;
    max-width: 161px;
    border-radius: 25px;
    font-size: 15px;
    background: #5CB24B;
    border: none;
    right: -15px;
    bottom: -5px;
  }
  .research-banner-btn {
    max-width: 304px;
    background: #F8F8F8;
    color: #151B1F;
    margin: 23px 0 0 0;
  }
  .research-banner-btn path {
    fill: #151B1F;
  }
  .research {
    margin: 0 0 67px 0;
  }
  .research-wrapper {
    background: transparent url("../../assets/img/research/mob-bg.webp") no-repeat top right/70%;
    padding: 15px;
  }
  .research-title {
    font-size: 24px;
    text-align: center;
  }
  .research-title span {
    position: static;
    max-width: 249px;
    height: 32px;
    border-radius: 34px;
    font-size: 20px;
    margin: 11px auto 46px auto;
  }
  .research-text {
    max-width: 320px;
    text-align: center;
    font-size: 14px;
    line-height: 130%;
    margin: 43px 0 0 0;
  }
  .research-btn.desk {
    display: none;
  }
  .research-btn.mob {
    display: flex;
    background: #F1F1F1;
    color: #000;
    max-width: 300px;
    margin: 26px auto auto auto;
  }
  .research-btn.mob path {
    fill: #000;
  }
  .research-steps {
    flex-direction: column;
    gap: 7px;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .research-step {
    position: relative;
    height: 50px;
    border-radius: 12px;
    padding: 13px 18px;
    gap: 24px;
  }
  .research-step .step-num {
    width: 26px;
    height: 24px;
    border-radius: 7px;
    font-size: 10px;
  }
  .research-step .step-text {
    font-size: 10px;
  }
  .research-step .step-stiker {
    position: absolute;
    top: -9px;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 11px;
    width: 122px;
    height: 18px;
    transform: rotate(2deg);
  }
  .research-popup {
    padding: 25px 12px;
  }
  .research-popup__close {
    top: 15px;
    right: 15px;
  }
  .research-popup__close svg {
    width: 13px;
    height: 13px;
  }
  .research-popup__header .title {
    font-size: 24px;
  }
  .research-popup__header p {
    font-size: 12px;
  }
  .research-popup__radio-title, .radio-text, .research-popup__select-title {
    font-size: 14px;
  }
  .research-popup input {
    height: 45px;
    font-size: 14px;
  }
  .research-popup textarea {
    font-size: 14px;
  }
  .research-popup__tumbs {
    margin: 16px 0;
  }
  .research-popup__tumb {
    font-size: 14px;
  }
  textarea[name=research_ta2] {
    margin-top: 16px;
  }
  .research-pp-cb {
    font-size: 12px;
    margin: 24px 0 16px 0;
  }
  .research-pp-cb a {
    margin-left: 5px;
  }
}

/*# sourceMappingURL=research.css.map */
