*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 
}

.contact-container{
  text-align: center;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%,-50%);
 }
.contact-container span{
  text-transform: uppercase;
  display: block;
 }
 .text{
  color:rgb(20, 34, 241);
  font-size: 36px;
  font-weight: bolder;
  margin-top: 20px;
  position: relative;
  animation: text 3s 1;
 }
 @keyframes text{
  0%{
    color:rgb(5, 81, 247);
    margin-top: -40px;
  
  }
  30%{
    letter-spacing: 10px;
    margin-top: -40px;
  }
  85%{
    letter-spacing: 6px;
    margin-top: -40px;
  }
 }
.container{
  width: 85%;
  background: #96ebf7;
  border-radius: 6px;
  margin-top: 20px;
  padding:  30px 40px;
  box-shadow: 5px 5px 10px rgba(59, 59, 59, 0.2);
}
.container .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}
.container .content .left-side{
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}
.container .content .left-side .topic{
  color: #3c06d3;
}

.content .left-side .details{
  margin: 14px;
  text-align: center;
}
.content .left-side .details i{
  font-size: 30px;
  color: #3e2093;
  margin-bottom: 10px;
}
.content .left-side .details .topic{
  font-size: 18px;
  font-weight: 500;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two{
  font-size: 14px;
  color: #2e2e2e;

}
.container .content .right-side{
  width: 75%;
  margin-left: 75px;
}
.content .right-side .topic-text{
  font-size: 23px;
  font-weight: 600;
  color: #3e2093;
}
.right-side .input-box{
  height: 50px;
  width: 100%;
  margin: 12px 0;
}


.right-side .button{
  display: inline-block;
  margin-top: 12px;
}
.right-side .button input[type="button"]{
  color: #fffcfc;
  font-size: 18px;
 margin-left: 40px;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: #3e2093;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button input[type="button"]:hover{
  background: #5029bc;
}

@media only screen and (max-width: 850px) {
  .contact-container{
    text-align: center;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%,-50%);
   }
  .contact-container .text{
    margin-top: -10rem;

  }
  .right-side{
    font-size: 15px;
  }
  .input-box input{
    height: 60%;
    width: 70%;
    font-size: 18px;
  } 
  .container-map{
    width: 50%;
    height: auto;
  }
  }
  
