@font-face {
	font-family: 'Arial';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
	src: local('Arial Regular'), 
    local('ArialMT'),
		url('/fonts/ArialMT.woff2') format('woff2');
}

@font-face {
	font-family: 'Arial';
  font-style: normal;
	font-weight: bold;
  font-display: swap;
	src:  local('Arial Bold'), 
        local('Arial-BoldMT'),
		    url('/fonts/Arial-BoldMT.woff2') format('woff2');
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bckg-prime: #000000;

  --font-family: "Roboto", sans-serif;
  --second-family: "Arial", sans-serif;
  --third-family: "Maven Pro", sans-serif;
  --font3: "Orbitron", sans-serif;

  --color-accent: #00eaff;
  --color-magenta-pink: #e52da5;

  --fz-base: clamp(30px, 7vw, 52px);
  --fz-lg-regular: clamp(14px, 3vw, 18px);
  --fz-regular: clamp(14px, 3.9vw, 18px);
  --fz-small: clamp(12px, 3.3vw, 16px);

  --padding: clamp(100px, 11vw, 150px);
}

body {
  background: var(--bckg-prime);
  color: #fff;
  position: relative;
  padding-inline: 70px;
}

header {
  position: relative;
  z-index: 3;
}

main {
  position: relative;
  z-index: 2;
}


li {
  list-style: none;
}

a {
  color: #fff;
  text-decoration: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.backg-blur {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  z-index: -1;
}

.bannercontainer {
  display: flex;
  height: 100vh;
  max-height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.text-accent {
  color: var(--color-accent);
}

.radio-gradient-purple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(14% 40% at 0% 50%, #fc31ff 0%, transparent 100%);
  filter: blur(70px);
  z-index: -1;
}

.parallax-container .radio-gradient-pink{
  top: -500px;
  left: -200px;
}

.radio-gradient-pink {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(35% 43% at 75% 42%, var(--color-magenta-pink) 0%, transparent 60%);
  filter: blur(70px);
  z-index: -1;
}

.mainbutton {
  display: inline-block;
  padding: clamp(12px, 2vw, 18px) clamp(25px, 5vw, 55px);
  background: rgba(133, 153, 156, 0.14);
  border: 1px solid rgba(147, 173, 176, 0.3);
  border-radius: 29px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: var(--fz-regular);
  transition: .3s ease;
}

.mainbutton:hover {
  background: #01eaff;
  box-shadow: 0 0 30px #31ecff;
}

.parallax-container {
  position: relative;
}

.parallax {
  will-change: transform;
}

.magnet {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  will-change: transform;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.selectbuttnav{
  color: #01eaff;
  text-shadow: 0 0 30px #31ecff;
}

.serv_list {
  display: grid;
  gap: 40px;
}

.list__item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 40px;
    align-items: stretch;
    justify-items: center;
}

.list__item-content-wrapper {
  display: grid;
  padding: 40px;
  border: 2px solid #334155;
  border-radius: 50px;
  background: rgba(22, 22, 22, 0.59);
  width: 100%;
  transform: translateY(0px);
  transition: .3s ease;
}

.hover_scaleblock:hover {
  transform: scale(1.05);
}

.list__item-content-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: clamp(24px, 5vw, 32px);
}

.list__item-content-description {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: var(--fz-regular);
  color: #94a3b8;
  margin-top: 35px;
}

.list__item-content-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.list__item-content-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: var(--fz-small);
}

.list__item-content-title {
  color: #f878fa;
}

.list__item-content-title:nth-of-type(2) {
  margin-top: 30px;
}

.list__item-content-item-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #ff38b9;
}

.navigation__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  padding-top: 30px;
  position: absolute;
  z-index: 3;
}

.logoretro img {
  width: clamp(125px, 15vw, 217px);
  height: auto;
}

.navigation__list-menu {
  display: flex;
  align-items: center;
  gap: 50px;
}

.navigation__list-item-wrapper {
  position: relative;
  transition: .3s ease;
  z-index: 2;
  padding: 10px 15px;
}

.navigation__list-item-wrapper .navigation__list-item {
  padding: 0;
}

.navigation__sublist-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  top: 0;
  left: -1px;
  padding: 46px 15px 15px 15px;
  width: calc(100% + 2px);
  border: 1px solid rgba(147, 173, 176, 0.3);
  border-radius: 15px;
  background: rgba(22, 22, 22, 1);
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
  z-index: -1;
}

.navigation__list-item-wrapper:hover
.navigation__sublist-menu {
  opacity: 1;
  visibility: visible;
}

.navigation__list-item {
  position: relative;
}

.navigation__list-link {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  transition: .3s ease;
}

.navigation__sublist-link {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.02em;
  transition: .3s ease;
}

.navigation__list-link:hover,
.navigation__list-item-wrapper:hover .navigation__list-link,
.navigation__sublist-link:hover {
  color: #01eaff;
  text-shadow: 0 0 30px #31ecff;
}

.header-about {
  background: url('/img/footer-logo.svg') 155% center no-repeat;
  background-size: 66%;
}

header .radio-gradient-purple {
  position: absolute;
  top: clamp(-580px, calc(0px - 580 * ((100vw - 320px) / (1536 - 320))), 0px);
  left: clamp(-359px, calc(0px - 359 * ((100vw - 320px) / (1536 - 320))), -25px);
  width: 100%;
  height: clamp(40%, 112vw, 100%);
  background: radial-gradient(100% 100% at -45% 50%, #fc31ff 0%, transparent 100%);
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  width: 100%;
}

.header__wrapper .radio-gradient-pink {
  right: 0;
  width: 60%;
  height: 75%;
  background: radial-gradient(31% 10% at 35% 49%, var(--color-magenta-pink) 0%, transparent 80%);
}

.header__content {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.header__content-title {
  max-width: 700px;
  font-family: var(--font3);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 50px);
  text-shadow: 0 0 30px #000000ab;
}

.header__content-title-about {
  font-size: clamp(24px, 7vw, 36px);
  max-width: clamp(400px, 55vw, 800px);
}

.header__content-description-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.header__content-description-wrapper-about {
  max-width: 623px;
}

.header__content-description {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(18px, 7vw, 22px);
  line-height: 200%;
  letter-spacing: 0.01em;
  width: clamp(250px, 34vw, 500px);
}

.header__img-wrapper {
  position: absolute;
  width: clamp(200px, 55vw, 800px);
  right: -45px;
  z-index: -1;
}

.header__img {
  width: 100%;
}

.header__content-description-aboutus{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  max-width: clamp(400px, 55vw, 700px);
}

.header__content-aboutus {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(18px, 7vw, 22px);
  line-height: 200%;
  letter-spacing: 0.01em;
  width: 100%;
}

.header_imgaboutuscont{
  position: absolute;
  width: clamp(350px, 40vw, 600px);
  height: clamp(320px, 80vw, 800px);
  z-index: -2;
  overflow: hidden;
  right: -70px;
  margin-top: 50px;
}

.header_imgaboutuscont img{
  height: 100%;
}

.header__content-description-wrapper-home {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  max-width: 400px;
}

.brief-description {
  padding: 0 0 var(--padding) 0;
}

.brief-description__title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 175%;
  text-align: center;
  max-width: 976px;
  margin: 0 auto;
}

.servicesretro {
  position: relative;
  padding-bottom: var(--padding);
}

.servicesretro .radio-gradient-purple {
  left: -625px;
  height: 60%;
  background: radial-gradient(100% 40% at 0% 50%, #fc31ff -180%, transparent 100%);
}

.servicesretro .radio-gradient-pink {
  top: -133px;
  right: 0;
  width: 58%;
  height: 25%;
  background: radial-gradient(70% 70% at 50% 50%, var(--color-magenta-pink) -180%, transparent 100%);
}

.servicesretro .radio-gradient-pink2 {
  top: auto;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background: radial-gradient(47% 50% at 69% 22%, var(--color-magenta-pink) -180%, transparent 100%);
}

.services__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: var(--fz-base);
  letter-spacing: 0.07em;
  text-align: center;
}

.services__list {
  margin-top: 40px;
}

.list__item-img-wrapper {
  max-width: 659px;
  width: 100%;
  height: 378px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.list__item-img {
  width: 90%;
}

.services__item-content-button {
  display: inline-block;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: var(--fz-small);
  margin: 60px auto 0 auto;
}

.services__item-content-button::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  margin-top: 5px;
  transform: scaleX(0);
  transition: .3s ease;
}

.services__item-content-button:hover::after {
  transform: scaleX(1);
}

.aboutretro {
  padding-bottom: var(--padding);
  position: relative;
}

.aboutretro .radio-gradient-purple {
  top: auto;
  bottom: -530px;
  left: -130px;
  background: radial-gradient(50% 50% at 0% 50%, #fc31ff -180%, transparent 100%);
}

.aboutretro .radio-gradient-pink {
  height: 70%;
  background: radial-gradient(44% 70% at 70% 50%, var(--color-magenta-pink) -180%, transparent 100%);
}

.about__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: var(--fz-base);
  letter-spacing: 0.07em;
  text-align: center;
}

.about__content {
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about__content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}



.about__content-description {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: var(--fz-lg-regular);
  line-height: 175%;
  width: clamp(250px, 40vw, 500px);

}

.about__content-button-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.about__content-img-wrapper {
  position: relative;
  max-width: 500px;
}

.about__content-img {
  width: 100%;

}

.advantages {
  padding-bottom: var(--padding);
  position: relative;
}

.advantages .radio-gradient-pink {
  right: 0;
  bottom: 100px;
  width: 100%;
  height: 70%;
  background: radial-gradient(44% 70% at 70% 50%, var(--color-magenta-pink) -180%, transparent 100%);
}

.advantages__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: var(--fz-base);
  letter-spacing: 0.07em;
  text-align: center;
}

.advantages__list {
  margin-top: 70px;
  display: flex;
  gap: 40px;
  flex-direction: column;
}

.faq {
  position: relative;
  padding-bottom: var(--padding);
}

.faq .radio-gradient-pink {
  right: 90px;
  bottom: 100px;
  width: 100%;
  height: 70%;
  background: radial-gradient(44% 70% at 70% 50%, var(--color-magenta-pink) -180%, transparent 100%);
}

.faq__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: var(--fz-base);
  letter-spacing: 0.07em;
  text-align: center;
  margin-bottom: 60px;
}

.faq__accordion-container {
    height: 520px;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px 0;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent,
      black 20%,
      black 80%,
      transparent
    );
    mask-image: linear-gradient(
      to bottom,
      transparent,
      black 20%,
      black 80%,
      transparent
    );
}
.faq__accordion-container::-webkit-scrollbar {
  display: none;
}

.accordion-wrapper {
  padding: 20px 55px;
  border: 2px solid #334155;
  border-radius: 50px;
}

.accordion-wrapper:first-child {
  margin-top: 0;
}

.accordion-wrapper:last-child {
  margin-bottom: 0;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}

.accordion-trigger__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: clamp(18px, 4vw, 24px);
  letter-spacing: 0.07em;
}

.accordion-trigger__pluse-wrapper {
  width: 30px;
  height: 30px;
  transition: transform 0.5s ease;
}

.accordion-trigger__pluse-wrapper svg {
  width: 100%;
  height: 100%;
}

.accordion-trigger__pluse-wrapper.activeaccord {
  transform: rotate(45deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.accordion__content-description {
  font-family: var(--second-family);
  font-weight: 200;
  font-size: 16px;
  letter-spacing: 0.07em;
  margin-top: 20px;
}

.accordion__content.activeaccord{
  max-height: 500px;
}

.footer {
  position: relative;
  padding-bottom: 50px;
  z-index: 2;
}

.footer__modal-form {
  border: 2px solid #334155;
  border-radius: 50px;
  background: rgba(22, 22, 22, 0.39);
  width: 100%;
  display: flex;
  padding: 40px;
  transform: translateY(0px);
  transition: .3s ease;
  flex-direction: column;
  align-items: center;
}

.footer__modal-form-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: clamp(18px, 4vw, 32px);
  letter-spacing: 0.07em;
  text-align: center;
}

.footer__modal-form-description {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: var(--fz-small);
  text-align: center;
  margin-top: 35px;
}

.footer__modal-form-button {
  margin: clamp(35px, 9vw, 60px) auto 0 auto;
}


.footer__bottom-wrapper {
  margin-top: var(--padding);
}

.footer__bottom-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer__bottom-content-little-text-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__bottom-content-little-text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: var(--fz-small);
}

.footer .radio-gradient-purple {
  top: auto;
  bottom: 0;
  left: clamp(-320px, calc(0px - 320 * ((100vw - 320px) / (1536 - 320))), -1px);
  background: radial-gradient(50% 133% at 0% 50%, #fc31ff -180%, transparent 100%);
}

.pop-up {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
  z-index: 100;
}

.pop-up.activepopup {
  display: flex;
}

.pop-up__form {
  border: 2px solid #3d4045;
  border-radius: 30px;
  padding: 30px;
  background: #000;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
}

.pop-up__form > form{
  display: grid;
  justify-items: center;
  justify-content: center;
}

.pop-up__form::-webkit-scrollbar {
  display: none;
}

.form__close {
  width: 25px;
  height: 25px;
  transform: rotate(45deg);
  margin-left: auto;
  cursor: pointer;
  top: 30px;
  right: 30px;
  position: absolute;
}

.form__close img {
  transform: rotate(45deg);
}

.form__input-items {
  display: grid;
  gap: 25px;
}

.form__input-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form__input-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--fz-lg-regular);
  color: var(--color-accent);
}

.form__input-item-checkbox-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.form__input-item-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.form__input {
  border: 2px solid #3d4045;
  border-radius: 15px;
  padding: 10px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--fz-small);
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  outline: none;
  transition: all 0.3s;
}

.form__input-item-label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 5px;
}

.form__input-item-checkbox {
  display: none;
}

.form__input-item-checkbox-label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  border: 1px solid #3d4045;
}

.form__input-item-checkbox-label::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  background: #3d4045;
  border-radius: 50%;
  opacity: 0;
}

.form__input-item-checkbox:checked + .form__input-item-checkbox-label::before {
  opacity: 1;
}

.form__input-textarea {
  height: 92px;
  resize: none;
}

textarea.form__input-textarea:focus,
input.form__input:focus {
    box-shadow: 0 0 17px #67eafc;
    border: 2px solid #67eafc;
}

.form__button {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--fz-small);
  color: #000;
  border-radius: 15px;
  border: none;
  padding: 15px;
  background: #67eafc;
  margin-top: 25px;
  transition: .3s ease;
  cursor: pointer;
}

.form__button:hover {
  box-shadow: 0 0 17px #67eafc;
}

.navihed{
  padding-bottom: 20px;
}

.header__wrapper-pbx,
.header__wrapper-dialler,
.header__wrapper-telephony,
.header__wrapper-virtual-numbers {
  justify-content: center;
}

.header__content-pbx,
.header__content-dialler,
.header__content-telephony,
.header__content-virtual-numbers {
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
}

.header__content-description-pbx,
.header__content-description-dialler,
.header__content-description-telephony,
.header__content-description-virtual-numbers {
  max-width: 1185px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(16px, 7vw, 18px);
  line-height: 200%;
  letter-spacing: 0.01em;
  width: 80%;
}

.about-pbx,
.dialler,
.telephony,
.virtual-numbers {
  position: relative;
  padding-bottom: var(--padding);
}

.about-pbx .radio-gradient-purple,
.dialler .radio-gradient-purple,
.telephony .radio-gradient-purple,
.virtual-numbers .radio-gradient-purple  {
  left: -625px;
  height: 60%;
  background: radial-gradient(100% 40% at 0% 50%, #fc31ff -180%, transparent 100%);
}

.about-pbx .radio-gradient-pink,
.dialler .radio-gradient-pink,
.telephony .radio-gradient-pink,
.virtual-numbers .radio-gradient-pink {
  top: 90px;
  right: 0;
  width: 58%;
  height: 40%;
  background: radial-gradient(31% 10% at 35% 49%, var(--color-magenta-pink) 0%, transparent 80%);
}

.about-pbx .radio-gradient-pink2,
.dialler .radio-gradient-pink2,
.telephony .radio-gradient-pink2,
.virtual-numbers .radio-gradient-pink2 {
  top: auto;
  bottom: 50px;
  right: 0;
  width: 100%;
  height: 50%;
  background: radial-gradient(47% 50% at 69% 22%, var(--color-magenta-pink) -180%, transparent 100%);
}

.about-pbx__title,
.dailer__title,
.telephony__title,
.virtual-numbers__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: var(--fz-base);
  letter-spacing: 0.07em;
  text-align: center;
}

.about-pbx__list,
.dailer__list,
.telephony__list,
.virtual-numbers__list {
  margin-top: 40px;
}

.about-pbx__item,
.dailer__item,
.telephony__item,
.virtual-numbers__item {
  gap: 20px;
}

.about-pbx__item-content-description.list__item-content-description,
.dailer__item-content-description.list__item-content-description,
.telephony__item-content-description.list__item-content-description,
.virtual-numbers__item-content-description.list__item-content-description  {
  line-height: 150%;
  margin-top: 20px;
  max-width: 625px;
  color: #fff;
}

.virtual-numbers__item:nth-child(2) .virtual-numbers__item-img {
  height: 100%;
  object-fit: contain;
}

.more-features {
  padding-bottom: var(--padding);
  position: relative;
}

.more-features .radio-gradient-pink {
  right: 0;
  bottom: 100px;
  width: 100%;
  height: 70%;
  background: radial-gradient(44% 70% at 70% 50%, var(--color-magenta-pink) -180%, transparent 100%);
}

.more-features__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: var(--fz-base);
  letter-spacing: 0.07em;
  text-align: center;
}

.more-features__list {
  margin-top: 70px;
}

.more-features__item-content-description {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: var(--fz-regular);
  line-height: 30px;
  color: #fff;
}

.about__list-item {
  grid-template-columns: repeat(1, 1fr);
}

.about__list-item .list__item-content-title {
  text-align: center;
}

.about__list-item .list__item-content-item {
  justify-content: center;
}

.loadlogocont{
  min-width: 250px;
  min-height: 250px;
  position: relative;
}
.loadlogocont img{
  width: 100%;
  position: absolute;
}

.loadlogocont img:first-child {
    animation: glowPulse 2s ease-in-out infinite;
}
.loadlogocont img:last-child {
    animation: glowLig 2s ease-in-out infinite;
}
@keyframes glowLig {
    0% {
      filter: drop-shadow(0 0 0px #00eeff00);
    }
    50% {
      filter: drop-shadow(0 0 15px #000000);
    }
    100% {
      filter: drop-shadow(0 0 0px #00eeff00);
    }
}

@keyframes glowPulse {
    0% {
        filter: blur(0px);
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        filter: blur(4px);
        transform: scale(0.95);
    }
    100% {
        filter: blur(0px);
        opacity: 1;
        transform: scale(1);
    }
}

.popresponse-result-success, 
.popresponse-result-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 175%;
  text-align: center;
}

.popresponse-result-error>p{
    margin: 10px 0px 50px;
    width: 300px;
}
.popresponse-result-error::before{
  content: '';
  background: url('../img/unsuccessfully.svg') no-repeat center center;
  background-size: contain;
  height:70px;
  width:70px;
  display: inline-block;
  -webkit-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -o-transition: all 0.33s ease;
  transition: all 0.33s ease;
  margin-top: 40px;
  margin-bottom: 30px;
}
.popresponse-result-success>p{
    margin: 10px 0px 50px;
    width: 300px;
    color: rgb(255, 255, 255);
}
.popresponse-result-success::before{
  content: '';
  background: url('../img/successfully.svg') no-repeat center center;
  background-size: contain;
  height:70px;
  width:70px;
  display: inline-block;
  -webkit-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -o-transition: all 0.33s ease;
  transition: all 0.33s ease;
  margin-top: 40px;
  margin-bottom: 30px;
}

#retf_compname{
  display: none;
}