/** contact-section **/

.contact-form-wrap {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.contact-form-wrap .content-box {
  padding: 0 40px !important;
  max-width: 100% !important;
}
.contact-form-wrap .contact-form-embed {
  border-radius: 20px;
  border: 1px solid #9FC1ED;
  background: radial-gradient(110.88% 127.88% at 71.09% 0%, #E0EDFC 74.09%, #9ABDF5 100%);
  padding: 40px;
}
.contact-form-wrap p {
  max-width: 100% !important;
}


.contact-form-wrap .contact-form-embed .hs-form-field {
  position: relative;
  margin-bottom: 22px !important;
}

.contact-form-wrap .contact-form-embed .form-group:last-child .hs-form-field {
  margin-bottom: 0px;
}

.contact-form-wrap .contact-form-embed .hs-form-field label{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 4px;
  color: var(--title-color);
  font-weight: bold;
}

.contact-form-wrap .contact-form-embed .hs-form-field:last-child{
  margin-bottom: 0px;
}
.contact-form-wrap fieldset {
    max-width: 100% !important;
}

.contact-form-wrap .contact-form-embed .hs-form-field input[type='text'],
.contact-form-wrap .contact-form-embed .hs-form-field input[type='email'],
.contact-form-wrap .contact-form-embed .hs-form-field textarea,
.contact-form-wrap .contact-form-embed .hs-form-field select {
  position: relative;
  display: block;
  width: 100%;
  height: 46px;
  font-size: 16px;
  color: var(--text-color);
  padding: 10px 20px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #3C87DE;
  transition: all 500ms ease;
}

.contact-form-wrap .contact-form-embed .hs-form-field textarea{
  height: 150px;
  resize: none;
  border-radius: 6px;
  width: 100% !important;
}

.contact-form-wrap .contact-form-embed .hs-form-field input:focus,
.contact-form-wrap .contact-form-embed .hs-form-field textarea:focus{

}
.contact-form-wrap form label.hs-error-msg {
  color: #e10000 !important;
  font-weight: normal !important;
  margin: 0 !important;
  padding: 5px 0 0 0 !important;
}
.contact-form-wrap .actions {
  padding: 10px 0 0 0;
}
.contact-form-wrap .actions .hs-button {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--title-font);
  color: #fff;
  text-align: center;
  border-radius: 50px;
  padding: 12px 25px;
  z-index: 1;
  transition: all 0.5s ease-in-out 0.0s;
  text-transform: capitalize;
  background: var(--theme-color);
  width: 100%;
  display: block;
}
.contact-form-wrap .actions .hs-button:before {
    background: var(--button-hovers);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateX(0);
    transform-origin: left center;
    transition: all .5s ease;
    width: 0;
    z-index: -1;
}
.contact-form-wrap .actions .hs-button:hover:before {
    transform: translateX(1);
    width: 100%;
}
.contact-form-wrap .actions .hs-button:hover {
  background: #363175 !important;
}

.contact-form-wrap .inputs-list {
  display: flex;
}
.contact-form-wrap .inputs-list li {
  margin: 0 20px 5px 0;
}
.contact-form-wrap .inputs-list li input[type=checkbox] {
    display:none !important
}
.contact-form-wrap .inputs-list li input[type=checkbox] + span{
    font-weight:normal;
    cursor:pointer;
    margin-bottom:0;
    padding-left:0;
    line-height:1; 
    margin:0;
}
.contact-form-wrap .inputs-list li input[type=checkbox] + span:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  background-color: #fff;
  border: 1px solid #3C87DE;
  border-radius: 2px;
  font-weight: normal;
  position: relative;
  top: -2px;
}
.contact-form-wrap .inputs-list li input[type=checkbox]:checked + span:before {
    content:"\2714";
    color:white;
    background-color:#3C87DE;
    border:1px solid #3C87DE;
    text-align:center;
    line-height:18px;
}

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
 
}

@media only screen and (max-width: 767px){
 

@media only screen and (max-width: 599px){

}

@media only screen and (max-width: 690px){
  .contact-form-wrap .contact-form-embed {
    padding: 20px;
  }
  .contact-form-wrap .input input {
    width:100% !important;
  }
  .contact-form-wrap .input select {
    width:100% !important;
  }
  .contact-form-wrap .inputs-list {
    flex-wrap: wrap;
  }
  .contact-form-wrap .inputs-list li {
    width: 100%;
    margin: 0 0px 5px 0;
  }
  .contact-form-wrap .content-box {
    padding: 0 !important;
  }
 .contact-form-wrap fieldset > div {
     width: 100% !important;
  
  }
}