.contact_section{
    padding: 12.1vw;
    background: linear-gradient(180deg,#f9f8f4,#fff7e8 27.01%);
    position: relative;
    z-index: 0;
}
.contact_section_wrap{
        display: flex;
    padding: 3vw;
    align-items: center;
        background: #f9f1e2;
    border-radius: 2vw;
}
.btn-loader svg {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}


.error-msg {
    color: red;
    font-size: 13px;
    margin-top: 4px;
    display: none;
}
.contact_section_col{
    width: 31.4vw;
    flex-shrink: 0;
}
.contact_section_col1 .full_div{
    margin-bottom: 2.3vw;
}
.contact_section_col1 .half{
        display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.3vw;
    margin-bottom: 2.3vw;
}
.contact_section_col1 label{
    text-align: left;
    display: block;
    font-weight: 500;
    font-size: .84vw;
    margin-bottom: .6vw;
}
.contact_section_col1 input{
        border: unset;
    width: 100%;
    background: #efe9db;
    height: 2.2vw;
    border-radius: .3vw;
    padding: 0 .9vw;
    box-sizing: border-box;
    font-size: .82vw;
}
.contact_section_col1{
    width: 100%;
}
.contact_section_col1 textarea{
        border: unset;
    width: 100%;
    background: #efe9db;
    height: 7.3vw;
    border-radius: .3vw;
    padding: .5vw .9vw;
    box-sizing: border-box;
    font-size: .85vw;
    font-family: inherit;
}
.contact_section_col1 button{
        border: unset;
    padding: .8vw 2.9vw;
    background: black;
    color: white;
    margin-top: .3vw;
    font-weight: 500;
    font-size: .9vw;
    border-radius: .4vw;
    cursor: pointer;
}
.contact_section_col h3{
    font-weight: 500;
    font-size: 3.25vw;
}
.contact_section_col p{
    font-size: 1.27vw;
    padding-right: 3vw;
    padding-top: 1vw;
    color: rgb(43, 43, 43);
    line-height: 1.5;
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
        padding: .58vw .9vw;
    color: rgb(96 96 107);
    font-weight: 500;

  background: #efe9db;
    border-radius: .3vw;
      font-size: .82vw;
  cursor: pointer;
  transition: all 0.3s ease;
}
.custom-select svg{
        position: absolute;
    right: .8vw;
    top: .7vw;
}
.custom-select-trigger:hover {
  background: #e9e9e9;
}

.custom-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border-radius: .3vw;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 99;
}

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-option {
    display: block;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.custom-option:hover {
  background: #f0f0f0;
}

.custom-option.selected {
  background: #e0e0e0;
}
@media(max-width:500px){
  .contact_section {
    padding: 33.1vw 3.1vw 30.1vw 3.1vw;
  }
  .contact_section_wrap {
    display: block;
    padding: 14vw 7vw;
    border-radius: 5vw;
}
.contact_section_col{
  width: unset;
}
.contact_section_col h3 {
    font-size: 11.25vw;
}
.contact_section_col p {
    font-size: 4.27vw;
    padding-right: 3vw;
    padding-top: 2vw;
}
.contact_section_col1 .half{
  display: block;
}
.contact_section_col1{
  padding-top: 13vw;
}
.contact_section_col1 label{
  font-size: 3.84vw;
  margin-bottom: 1.6vw;
}
.contact_section_col1 input {
    height: 11.2vw;
    border-radius: .3vw;
    padding: 0 3.9vw;
    box-sizing: border-box;
    font-size: 3.82vw;
}
.fields_div{
  margin-bottom: 9vw;
}
.contact_section_col1 .full_div {
    margin-bottom: 10.3vw;
}
.custom-select-trigger {
    padding: 3vw 3.9vw;
    border-radius: .3vw;
    font-size: 3.82vw;
}
.custom-select svg {
    position: absolute;
    right: 3.8vw;
    top: 3.7vw;
}
.contact_section_col1 textarea {
    height: 31.3vw;
    border-radius: .3vw;
    padding: 1.5vw 3.9vw;
    font-size: 3.85vw;
}
.contact_section_col1 button {
    padding: 2.8vw 12.9vw;
    background: black;
    margin-top: 5.3vw;
    font-weight: 500;
    font-size: 3.9vw;
    border-radius: 1.4vw;
}
}