/* @import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap");

:root {
  --primary-gradiant: linear-gradient(
    270deg,
    rgb(65, 239, 255) 0%,
    rgb(97, 93, 250) 100%
  );
  --text-color: rgb(0, 0, 0);
  --text-color-2: rgb(255, 255, 255);
  --primary-color: rgb(65, 239, 255);
} 
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}
body {
  width: 100%;
  height: auto;
  font-family: "Hind";
}*/
.popUpmain {
  width: 100%;
  height: 100vh;
  position: relative;
  display: grid;
  align-content: center;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.popWrapper {
  min-height: 750px;
  width: 100%;
  border-radius: 10px;
  background-color: rgb(243, 243, 243);
  box-shadow: 8.004px 10.244px 33.12px 12.88px rgba(12, 13, 12, 0.18);
  display: grid;
  align-content: center;
  padding: 30px 95px;
  background-image: url(../../../../images/popup/popBG.jpg);
  background-size: cover;
  margin: 30px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100px);
}
.popTxt {
  margin-bottom: 40px;
}
.popTxt h2 {
  font-size: 60px;
  color: var(--text-color-3);
  font-weight: bold;
}
.popTxt p {
  font-size: 21px;
  font-weight: 500;
  color: var(--text-color-3);
}
.popList {
  list-style: none;
  padding: 35px 0;
  margin: 0;
  position: relative;
  width: 78%;
  margin-top: 35px;
}
.ulBG {
  width: 100%;
  height: 100%;
  background: var(--primary-gradiant);
  border-top-right-radius: 150px;
  border-bottom-right-radius: 150px;
  position: absolute;
  top: 0;
  left: -95px;
}
.popList li {
  font-size: 25px;
  color: var(--text-color-3);
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  z-index: 1000;
}
.popList li i {
  font-size: 20px;
  margin-right: 15px;
}
.contact {
  margin-top: 35px;
}
.textField {
  border-radius: 10px;
  border: 0;
  width: 80%;
  height: 68px;
  background-color: rgb(255, 255, 255);
  margin-bottom: 12px;
  position: relative;
  padding-left: 35px;
  transition: 0.2s;
}
.textField:focus-within {
  outline: solid 2px var(--primary-color);
}
.textField i {
  font-size: 18px;
  color: var(--text-color-3);
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
}
.textField input {
  width: 100%;
  height: 100%;
  border: 0;
  background-color: transparent;
  padding-right: 100px;
}
.textField input:focus {
  outline: none;
}
::placeholder {
  font-size: 18px;
  color: var(--text-color-3);
  font-weight: 500;
}
.warning {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-color-3);
  margin-top: 40px;
  display: block;
}
aside {
  text-align: center;
  height: 100%;
}
aside img {
  width: auto;
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
}

.popClose {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background-color: rgb(69, 67, 127);
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 18px;
  color: var(--text-color);
  font-weight: 600;
  border: 0;
}
.apply {
  border-radius: 10px;
  background-image: var(--primary-gradiant);
  border: 0;
  padding: 0 95px;
  height: 68px;
  margin-top: 75px;
  font-size: 20px;
  font-weight: bold;
  color: var(--text-color);
}
