.contact-us-section{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 90px;
}
.contact-title{
  font-size: 36px;
  font-family: berkshire;
  color: #242F6C;
  margin-bottom: 50px;
}
.input-label {
  font-size: 15px;
  font-family: openSansSemibold;
  color: #242F6C;
  line-height: 15px;
}

.form-input {
  width: 100%;
  border: 0;
  padding: 4px 0 8px 0;
  border-bottom: 2px solid #ccc;
  height: 30px;
  font-size: 14px;
  color: #3c3c3c;
  font-family: openSansSemibold;
}
.form-input::placeholder{
  color: #cccccc;
}
.form-input:focus {
  border: none;
  outline: none;
  border-bottom: 2px solid #242F6C;
}

/* .form-input ~ .focus-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #242F6C;
  transition: 0.4s;
}
.form-input:focus ~ .focus-border {
  width: 100%;
  transition: 0.4s;
  left: 0;
} */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  background: white;
  color: red;
  padding: 6px 16px;
  border: 2px solid #ccc;
  border-radius: 12px;
  color: #8E8F96;
  cursor: pointer;
  font-family: openSansSemibold;
  font-size: 15px;
}



.contact-form{
  padding: 30px;
  /* background: #fff; */
  box-shadow: 0 3px 9px rgb(0 0 0 / 15%);
  border-radius: 12px;
  border: 1px solid #242F6C;
  width: 450px;
}
.form-input-title{
  font-size: 15px;
  font-family: openSansSemibold;
  color: #3c3c3c;
  margin-top: 12px;
}
.contact-us-button{
  padding: 8px 20px;
  font-size: 16px;
  font-family: openSansSemibold;
  color: white;
  background: #242F6C;
  outline: none;
  border: none;
  border-radius: 12px;
  margin-top: 36px;
  transition: all 0.2s;
  letter-spacing: 0.9px;
}
.contact-us-button:hover{
  color: white;
  background: #15dbe2;
}

.dropdown-container{
  height: 52px;
  border-radius: 12px;
  border: 2px solid #ccc;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.02);
  background-color: #fff;
  transition: all 0.5s;
  cursor: pointer;
}
.dropdown-container-active{
  height: 222px;
}
.dropdown-value{
  position: relative;
  height: 50px;
  font-size: 14px;
  font-family: openSansSemibold;
  color: #8E8F96;
  padding: 10px;
}
.dropdown-value-active{
  border-bottom: 1px solid #ccc;
}
.dropdown-container-active > .dropdown-value img{
  transform: rotate(180deg);
}
.dropdown-item{
  padding: 10px;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  font-family: openSansSemibold;
  color: #A79E9E;
  cursor: pointer;
}
.dropdown-item:hover{
  background: #3c3c3c;
  color: white;
}
.dropdown-item:last-child{
  border-bottom: none;
}
.quantity-dropdown{
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
}
.quantity-dropdown-active{
  height: 200px;
  overflow-x: hidden;
}
.period-dropdown-active{
  height: 179px;
}
.contact-messege-textarea{
  height: 80px;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.02);
  outline: none;
  background-color: #fff;
  padding: 8px 0;
  font-size: 14px;
  font-family: openSansSemibold;
  color: #3c3c3c;
}
.contact-messege-textarea::placeholder{
  font-size: 13px;
  color: #3c3c3c;
  font-family: gilroyRegular;
}


.thanks-modal-container{
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 999;
  padding: 30px;
  display: none;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.thanks-modal-container-active{
  display: flex;
  visibility: visible;
  transition: all 0.3s;
}
.modal-card{
  padding: 30px;
  width: 400px;
  background: #FFF;
  border: 2px solid #242F6C;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.thanks-title{
  font-size: 24px;
  font-family: openSansSemibold;
  color: #011B41;
}
.thanks-decsription{
  font-size: 16px;
  font-family: openSansSemibold;
  color: #3c3c3c;
  margin: 8px 0 30px 0;
  text-align: center;
}
.modal-close-btn{
  font-size: 18px;
  font-family: gilroyMedium;
  padding: 6px 16px;
  color: white;
  background: #011B41;
  border: none;
  outline: none;
  border-radius: 12px;
}

@media(max-width: 768px){
  .contact-us-section{
    padding: 60px 20px;
  }
  .contact-form{
    padding: 0;
    box-shadow: none;
    border: 0;
    width: 300px;
  }
  .contact-title{
    margin-bottom: 40px;
  }
  .contact-us-button{
    margin-top: 24px;
  }
}