* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapper{
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  max-width: 1380px;
  width: 100%;
  height: 100%;
  /* margin-bottom: 2rem; */
}
.contact-bg-image{
  width: 800px;
  /* outline: 2px solid red; */
  box-shadow: 0 0 0 2px red;
}
.contact-heading{
  font-size: 3rem;
  font-weight: 800;
  color: #7e15ce;
}
.contact-container{
  /* background-color:#f7e4d9 ; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
}

.contact-page{
    background-color:#f5f6fa;
    width: 100%;
    height: 600px;
    box-shadow: 0 0 10px black;
    display: flex;
    gap: 1rem;
}
.contact-image-div{
  display:flex;
  flex-direction: column;
  justify-content:center;
  align-items: start;
  gap: 2rem;
  padding: 1rem;
  padding-right: 3rem;
  clip-path: polygon(0 0, 100% 0, 61% 100%, 0% 100%);
  background: #d195fb;
  /* background-image: url(../../images/world_map1-removebg-preview.png); */
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border: 2px solid rebeccapurple;
  /* box-shadow: 0 0 10px #7e15ce; */
}
.contact-image-div h2{
  text-align: justify;
  margin-right: 5rem;
  color: rgb(31, 31, 31);
  color: white;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 300;
  line-height: 2rem;
  text-shadow: 0 0 4px black;
  user-select: none;
}
.contact-image-div .icon{
  margin-right: 7rem;
}
.contact-image-div .icon .remixicon{
  color: white;
}
.contact-info-div{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-info-div form{
  width: 60%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
  box-shadow: 0 0 20px #7e15ce;
  position: relative;
  box-sizing: border-box;
}
.contact-info-div form::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  transform: translate(50% , -50%);
  background: #ce9315;
  filter: blur(50px);
  /* z-index: -1; */
  /* animation: running-box1 4s ease infinite; */
}

@keyframes running-box1 {
  0%{
    transform: scale(1);
    background: #7e15ce;
  }
  25%{
    transform: scale(1.1);
    background: #2415ce;
  }
  50%{
    transform: scale(1.2);
    background: #15b2ce;
  }
  75%{
    transform: scale(1.1);
    background: #15ce53;
  }
  100%{
    transform: scale(1);
    background: #b5ce15;
  }
}
.contact-info-div form::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 50px;
  transform: translate(-100% , 100%);
  background: #01d4f9;
  filter: blur(50px);
  /* animation: running-box2 4s ease infinite; */
}


@keyframes running-box2 {
  0%{
    transform:translate(0px,0px) rotate(0deg);
    background: #7e15ce;
  }
  25%{
    transform:translate(0px,-350px) rotate(45deg);
    background: #2415ce;
  }
  50%{
    transform:translate(350px,-350px) rotate(90deg);
    background: #15b2ce;
  }
  75%{
    transform:translate(350px,0px) rotate(135deg);
    background: #15ce53;
  }
  100%{
    transform:translate(0px,0px) rotate(180deg);
    background: #b5ce15;
  }
}
.contact-info-div form  label{
  color: #7e15ce;
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.2rem;
}
.contact-info-div form  input , textarea{
  border: none;
  background: none;
  outline: none;
  width: 100%;
  height: 2.2rem;
  /* background: #b583db; */
  border: 2px solid #7e15ce;
  border-radius: 10px;
  color: white;
  padding: 4px;
  font-size: 1.1rem;
  font-family :'Times New Roman', Times, serif;
  font-weight: 500;
  word-spacing: 2px;
  color: black;
}
.contact-info-div form  input:hover, textarea:hover, input:focus, textarea:focus{
  background: #b583db;
  color: white;
}
.contact-info-div form button{
  border: none;
  background: none;
  background: #7e15ce;
  padding: 8px;
  color: white;
  /* border: 2px solid #7e15ce; */
  border-radius: 10px;
  animation: popUp ease 0.4s infinite;
  transition: all 0.2s;
  cursor: pointer;
}

/* @keyframes popUp {
  0%{
    transform: scale(1);
    padding: 8px;
  }
  50%{
    transform:scale (2) ;
    padding: 12px;
  }
  100%{
    transform: scale(1);
    padding: 8px;

  }
} */


.contact-info-div form button:hover{
  animation: none;
  background: #a02ff6;
}



@media only screen and (max-width : 1024px) {
  .wrapper{
    background: none;
    margin-right: none;
  }
  .contact-page{
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    /* margin-bottom: 2rem; */
    background: none;
    box-shadow: none;
  }
  .contact-image-div{
    display:flex;
    gap: 1rem;
    padding: 1rem;
    clip-path: none;
    border-radius: 20px;
    
  }
 
.contact-image-div h2 {
  line-height: 1.8rem;
  margin-right: 0rem;
  
}
.contact-image-div .icon {
  margin-right: 0rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.size-56 {
  --size: 35 !important;
}
  .contact-info-div form{
    width: 100%;
    border-radius: 20px;
    
  }
  .contact-info-div form::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0px;
    height: 50px;
    transform: translate(100% , -100%);
    background: #7e15ce;
    /* animation: running-box1 4s ease infinite; */
    animation: none;
  }

  .contact-info-div form::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0px;
    height: 50px;
    transform: translate(-100% , 100%);
    background: #7e15ce;
    /* animation: running-box2 4s ease infinite; */
    animation: none;
  }

}


@media only screen and (max-width : 450px) {
  
}