
.contact-container{
  background: #ffffff;
  padding: 25px 15%;
  border-radius: 4px;
}

@keyframes slideRight{
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-left{
  animation-name: slideRight;
  animation-duration: 1s;
}

@keyframes slideLeft{
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.slide-right{
  animation-name: slideLeft;
  animation-duration: 1s;
}
.contact-container .title{
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  font-family: Raleway;
}
.title{
  font-weight: bold!important;
}
.contact-container form .user-details{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

form .user-details .input-box{
  position: relative;
  border-bottom: 2px solid #fcb13d;
  margin-bottom: 16px;
  width: 100%;
}

.user-details .input-box .details{
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}

.user-details .input-box input{
  height: 34px;
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: none;
  background: none;
  padding-left: 30px;
  font-size: 16px;
  border-bottom-width: 2px;
  transition: all 0.3s ease;
}

.user-details .input-box select{
  background: #fff;
  color: gray;
  padding-left: 20px;
  border: none;
  position: relative;
  border-bottom: 2px solid #fcb13d;
  height: 55%;
}

.icon{
  position: absolute;
  top: 3px;
  width: 0px;
  height: 97%;
  display: flex;
  justify-content: center;
  color: dimgray;
  font-size: 19px;
  opacity: 50%;
}

.icon img{
  height: 53px;
  width: 79px;
  padding: 12px 10px 20px 41px;
}

.user-details .input-box input:focus,
.user-details .input-box input:valid{
  padding-top: 15px;
  padding-left: 30px;
  border-color: #fcb13d;
  background: none!important;
}

textarea{
  font-size: 15px;
  padding: 3px 8px 2px 8px;
  margin: 20px 10% 0 10%;
  width: 80%;
  resize: vertical;
  border: 2px solid #fcb13d;
  color: black;
  position: relative;
  border-bottom: 2px solid #fcb13d;
  font-family: Raleway;
}
textarea:focus{
  transition: 0s;
  border: 3px solid #fcb13d;
}

.btn{
  margin: auto;
}

input[type="submit"]{
  background: #fcb13d!important;
  color: whitesmoke;
  cursor: pointer;
  border: 3px solid  #fff!important;
  padding: 20px;
  font-size: 20px;
  font-family: Calibri;
  margin-right: 50px;
  border-radius: 50px;
  transition-duration: 0.5s;
  margin-top: 25px;
}
input[type="submit"]:hover{
  background-color: white;
  color: black;
  border: 2px solid  #fcb13d;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
:focus{outline: none;}
.effect ~ .focus-border{
  position: absolute;
  height: 36px;
  bottom: -2px;
  left: 0;
  width: 0;
  transition: 0.4s;
}

.effect:focus ~ .focus-border,
.effect:valid ~ .focus-border{
  width: 100%;
  transition: 0.5s;
  border: 2px solid #fcb13d;
  pointer-events: none;
}

label{
  padding: 2% 0% 0% 28px;
  font-family: Raleway;
}

.effect ~ label{
  position: absolute;
  top: 50%;
  left: 5px;
  color: dimgray;
  transform: translateY(-50%);
  font-size: 18px;
  pointer-events: none;
  transition: .5s;
} 

.effect:focus ~ label,
.effect:valid ~ label{
  padding: 0px 4px 0px 4px;
  top: -5px;
  color: black;
  background-color:  #fff;
  margin-top: 7px;
  z-index: 1;
}
.column2 {
  display: flex;
  flex-wrap: wrap;
  float: left;
  width: 49%;
  padding: 15px;
}
.column1 {
  display: flex;
  float: left;
  width: 49%;
  padding: 15px;
  height: 100px;
  flex-wrap: wrap;
}




