.form-section {
  position: relative;
  overflow: hidden;
  min-height: 75vh;
}
.form-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;      
  object-fit: cover; 
  max-width: none; 
  transform: translateX(-50%);
  z-index: 1;
}

.form-wrap {
  position: relative;
  margin-bottom: -2px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95); 
  padding: 2rem 4rem;
}
.form-section h2{
  text-transform: capitalize !important;
}

.form-section .input-group-lg .form-control{
  border-radius: none  !important;
}
.form-section textarea{
    resize: none !important;
    overflow-y: none;
}
.form-section .btn{
    display: inline-block;
    background-image: initial; 
    position: relative;   
    text-align: center;    
    cursor: pointer; 
    padding: 1rem 2rem;
    color: #2a2a2a !important;
    border: none !important;
    background-color: #ffba60;
    letter-spacing: 4px;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    transition: padding-right 300ms ease 0ms;
}
.form-section .btn:hover{
    padding-right: 3rem;
}
.form-section .btn::after {
    content: '→';
    position: absolute;
    color: #2a2a2a;
    margin-left: -1rem;
    z-index: 3;
    left: auto;            
    top: 47%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 300ms ease 0ms;
}
.form-section .btn:hover::after {
    margin-left: .3rem;
    opacity: 1;           
}
.form-section .form-wrap {
    opacity: 0;
    transform: translateY(100px); 
    transition: all 1s ease; 
}

.form-section .form-wrap.animate {
    opacity: 1;
    transform: translateY(0); 
}


.form-section .form-select{
  color: #6c757d;

}
#form-messanger,
#form-messanger::picker(select) {
  appearance: base-select;
}

#form-messanger {
  border: 1px solid #dddddd !important;
  background: #fff !important;
  padding: 10px !important;
  transition: 0.3s;
}

#form-messanger:hover,
#form-messanger:focus {
  background: #dddddd !important;
}

#form-messanger::picker-icon {
  color: #999999;
  transition: 0.3s rotate;
}

#form-messanger:open::picker-icon {
  rotate: 180deg;
}



::picker(select) {
  border: none;
}

#form-messanger option {
  display: flex;
  padding: 1rem;
  gap: 1px;
  background: #eeeeee;
  border: 1px solid #dddddd;
  transition: .3s;
}

#form-messanger option:hover,
#form-messanger option:focus {
  background: #163C25 !important;
  color: #fff !important;
}
#form-messanger option::checkmark {
  content: none !important;
}
#form-messanger option:first-child {
  pointer-events: none;
}
#form-messanger option:checked {
  font-weight: bold;
}

@media (min-width: 1400px) {
  .form-section .form{
    margin: auto 1rem;
  }
}
@media (max-width: 576px) {
  .form-section .form-wrap{
    padding: 1rem 2rem;
  }
  .form-section .form-control{
    max-height: 5em;
  }
  
}